CppELib 1.7.0
Loading...
Searching...
No Matches
Runnable.h
Go to the documentation of this file.
1#ifndef OS_WRAPPER_RUNNABLE_H_INCLUDED
2#define OS_WRAPPER_RUNNABLE_H_INCLUDED
3
4namespace OSWrapper {
5
9class Runnable {
10public:
11 virtual ~Runnable() {}
16 virtual void run() = 0;
17};
18
19}
20
21#endif // OS_WRAPPER_RUNNABLE_H_INCLUDED
Interface for implementing an active class.
Definition Runnable.h:9
virtual ~Runnable()
Definition Runnable.h:11
virtual void run()=0
Run the active class.
OSWrapper provides abstract C++ interface of common RTOS: thread, mutex, event flag,...
Definition EventFlag.cpp:5