You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/ESPressio_IThread.hpp
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -27,14 +27,14 @@ namespace ESPressio {
27
27
`IThread` is a common Interface for all Thread Types provided by this library.
28
28
You can use it to reference any Thread Type without knowing the actual type.
29
29
*/
30
-
classIThread: publicObject<IThread> {
30
+
classIThread {
31
31
public:
32
32
// Destructor
33
33
34
-
/// The Destructor is declared as `virtual` to ensure that the correct destructor is called when a derived class is destroyed.
35
-
virtual~IThread() {
36
-
DoNotifyDestroy();
37
-
}
34
+
/// The Destructor is declared as `virtual` to ensure that the correct destructor is called when a derived class is destroyed.
35
+
virtual~IThread() {
36
+
DoNotifyDestroy();
37
+
}
38
38
// Methods
39
39
40
40
/// `Initialize` is invoked automatically for all Threads when the `ThreadManager` is initialized in your `main()` (or `setup()` for MCU projects) function.
0 commit comments