Updater.h 324 B

12345678910111213141516171819202122232425
  1. #ifndef UPDATER_H
  2. #define UPDATER_H
  3. #include <Thread.h>
  4. using namespace Framework;
  5. class ShopServer;
  6. class Updater : public Thread
  7. {
  8. private:
  9. ShopServer* shs;
  10. bool beenden;
  11. public:
  12. // Konstruktor
  13. Updater(ShopServer* ahServ);
  14. // Destruktor
  15. virtual ~Updater();
  16. // nicht constant
  17. void thread() override;
  18. };
  19. #endif