KeepAlive.h 258 B

123456789101112131415161718192021
  1. #ifndef KeepAlive_H
  2. #define KeepAlive_H
  3. #include <Thread.h>
  4. using namespace Framework;
  5. class KeepAliveTh : public Thread
  6. {
  7. private:
  8. bool exit;
  9. public:
  10. // Konstruktor
  11. KeepAliveTh();
  12. // nicht constant
  13. void thread() override;
  14. void doExit();
  15. };
  16. #endif