CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
event.h
1
3
4#ifndef _aspose_system_event_h_
5#define _aspose_system_event_h_
6
7#include "system/multicast_delegate.h"
8
9namespace System
10{
13 template<class... Args>
14 using Event = MulticastDelegate<Args...>;
15
16} // namespace System
17#endif // _aspose_system_event_h_
Definition: db_command.h:9
MulticastDelegate< Args... > Event
Represents an event - a mechanism through which subscribers are notified about an occurence of intere...
Definition: event.h:14