1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 00:37:15 +01:00

Forgot to commit the header with the new changes to the basic event type.

This commit is contained in:
Sandu Liviu Catalin 2015-10-03 21:55:08 +03:00
parent 4927e4e5a4
commit 908ddbe30f

View File

@ -19,7 +19,7 @@ class BasicEvent
protected:
// --------------------------------------------------------------------------------------------
typedef std::chrono::time_point<std::chrono::steady_clock> TimePoint;
typedef std::chrono::time_point< std::chrono::steady_clock > TimePoint;
public:
@ -749,12 +749,12 @@ protected:
/* --------------------------------------------------------------------------------------------
* ...
*/
void Attach(EventType evt) noexcept;
void Attach() noexcept;
/* --------------------------------------------------------------------------------------------
* ...
*/
void Detach(EventType evt) noexcept;
void Detach() noexcept;
private: