Render.h 363 B

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