#ifndef Render_H #define Render_H #include #include using namespace Framework; class Render : public Thread { private: Bildschirm *bildschirm; bool beendet; public: // Konstruktor Render( Bildschirm *b ); // Destruktor ~Render(); // nicht constant virtual void thread(); void beenden(); }; #endif