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 b9a122a commit 426adc5Copy full SHA for 426adc5
1 file changed
src/ESPressio_IEvent.hpp
@@ -14,6 +14,14 @@ namespace ESPressio {
14
static bool operator()(const MyClass& a, const MyClass& b) const {
15
return a._classID < b._classID;
16
}
17
+
18
+ static bool operator==(const MyClass& other) const {
19
+ return _classID == other._classID;
20
+ }
21
22
+ static void tmpSetClassID(uint16_t classId) {
23
+ _classId = classId;
24
25
};
26
27
0 commit comments