We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b8e1bd commit 7633322Copy full SHA for 7633322
2 files changed
src/ESPressio_IEvent.cpp
@@ -1,5 +1,7 @@
1
#include "ESPressio_IEvent.hpp"
2
3
+using namespace ESPressio::Event;
4
+
5
uint16_t IEvent::_classId = 0;
6
7
uint16_t IEvent::GetClassID() {
src/ESPressio_IEvent.hpp
@@ -12,13 +12,9 @@ namespace ESPressio {
12
protected:
13
static uint16_t _classId;
14
public:
15
- static uint16_t GetClassID() {
16
- return _classId;
17
- }
+ static uint16_t GetClassID();
18
19
- static void tmpSetClassID(uint16_t classId) {
20
- _classId = classId;
21
+ static void tmpSetClassID(uint16_t classId);
22
};
23
24
}
0 commit comments