blob: f8911ae1d9f76f61970947369bcfb80319fad005 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "cru/ui/DeleteLater.h"
#include "Helper.h"
#include "cru/platform/gui/UiApplication.h"
namespace cru::ui {
DeleteLaterImpl::~DeleteLaterImpl() {}
void DeleteLaterImpl::DeleteLater() {
GetUiApplication()->SetImmediate([this] { delete this; });
}
void DeleteLaterImpl::OnPrepareDelete() {}
} // namespace cru::ui
|