Karte.h 544 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. #ifndef Karte_H
  2. #define Karte_H
  3. #include <Bild.h>
  4. #include <Rahmen.h>
  5. using namespace Framework;
  6. class Kamera;
  7. class Karte
  8. {
  9. private:
  10. int karteId;
  11. Bild *map;
  12. LRahmen *rahmen;
  13. int ref;
  14. public:
  15. // Konstruktor
  16. Karte();
  17. // Destruktor
  18. ~Karte();
  19. // nicht constant
  20. void setSize( int br, int hö );
  21. void setId( int id );
  22. void render( Kamera *zKam, Bild &zRObj );
  23. // constant
  24. int getId() const;
  25. int getBreite() const;
  26. int getHeight() const;
  27. Bild *zMap() const;
  28. // Reference Counting
  29. Karte *getThis();
  30. Karte *release();
  31. };
  32. #endif