Ende.h 502 B

12345678910111213141516171819202122232425262728293031323334
  1. #ifndef Ende_H
  2. #define Ende_H
  3. #include <Knopf.h>
  4. using namespace Framework;
  5. class Ende
  6. {
  7. private:
  8. LRahmen *rahmen;
  9. TextFeld *text;
  10. TextFeld *warten;
  11. Knopf *ok;
  12. bool weiter;
  13. int ref;
  14. public:
  15. // Konstruktor
  16. Ende( Schrift *zSchrift );
  17. // Destruktor
  18. ~Ende();
  19. // nicht constant
  20. void setGewonnen( char gewonnen );
  21. void doMausEreignis( MausEreignis &me );
  22. void render( Bild &zRObj );
  23. // constant
  24. bool getWeiter() const;
  25. // Reference Counting
  26. Ende *getThis();
  27. Ende *release();
  28. };
  29. #endif