CtrlCore: Ctrl::operator^=(Event<>) experimental

git-svn-id: svn://ultimatepp.org/upp/trunk@10320 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2016-10-16 06:39:21 +00:00
parent fd61738835
commit 82e3ee7710

View file

@ -1141,6 +1141,7 @@ public:
Callback operator<<=(Callback action) { WhenAction = action; return action; }
Event<>& operator<<(Event<> action) { return WhenAction << action; }
Event<>& operator^=(Event<> action) { return WhenAction = action; }
void SetTimeCallback(int delay_ms, Function<void ()> cb, int id = 0);
void KillTimeCallback(int id = 0);