Ende.h 526 B

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