nim_duilib/ui_components/modal_wnd/async_do_modal.cpp
jiajia_deng ad9a6b3edc Modified the namespace of the UI component
Signed-off-by: jiajia_deng <2894220@gmail.com>
2019-09-22 11:08:20 +08:00

18 lines
312 B
C++

#include "stdafx.h"
#include "async_do_modal.h"
#include "async_modal_runner.h"
namespace nim_comp {
bool AsyncDoModal(ModalWndBase *dlg)
{
return AsyncModalRunnerManager::GetInstance()->DoModal(dlg);
}
void CancelAllAsyncModalDialogs()
{
AsyncModalRunnerManager::GetInstance()->CancelAllThreads();
}
}