CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
auto_reset_event.h
1
2#if !defined(_auto_reset_event_h_)
3#define _auto_reset_event_h_
4
5#include "system/object.h"
6#include "system/threading/event_wait_handle.h"
7
8namespace System{ namespace Threading{
9
79class ASPOSECPP_SHARED_CLASS AutoResetEvent final : public EventWaitHandle
80{
82 RTTI_INFO(System::Threading::AutoResetEvent, ::System::BaseTypesInfo<System::Threading::EventWaitHandle>);
83public:
86 ASPOSECPP_SHARED_API AutoResetEvent(bool initialState);
87};
88
89}}
90
91#endif
Event to notify waiting thread that resets automatically. Objects of this class should only be alloca...
Definition: auto_reset_event.h:80
AutoResetEvent(bool initialState)
Constructor.
Event that can be sent to waiting thread. Objects of this class should only be allocated using System...
Definition: event_wait_handle.h:23
Definition: db_command.h:9