libpromeki 1.0.0-alpha
PROfessional MEdia toolKIt
 
Loading...
Searching...
No Matches
timerevent.h
Go to the documentation of this file.
1
8#pragma once
9
10
11#include <promeki/config.h>
12#if PROMEKI_ENABLE_CORE
13#include <promeki/event.h>
14
15PROMEKI_NAMESPACE_BEGIN
16
25class TimerEvent : public Event {
26 public:
31 TimerEvent(int timerId) : Event(Event::Timer), _timerId(timerId) {}
32
37 int timerId() const { return _timerId; }
38
39 private:
40 int _timerId;
41};
42
43PROMEKI_NAMESPACE_END
44
45#endif // PROMEKI_ENABLE_CORE