1 2 3 4 5 6 7 8 9 10 11 12
#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; }); } } // namespace cru::ui