123456789101112131415161718192021222324252627282930 |
- #ifndef Karte_H
- #define Karte_H
- #include <Bild.h>
- using namespace Framework;
- class Karte : public virtual ReferenceCounter
- {
- private:
- int id;
- Bild *map;
- Punkt size;
- public:
- // Konstruktor
- Karte();
- // Destruktor
- ~Karte();
- // nicht constant
- void setKarteId( int id );
- void setSize( int br, int hi );
- // constant
- int getKarteId() const;
- int getBreite() const;
- int getHeight() const;
- Bild *zMap() const;
- };
- #endif
|