GesamtTeamStatistik.h 809 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #ifndef GesamtTeamStatistik_H
  2. #define GesamtTeamStatistik_H
  3. #include <Text.h>
  4. #include <InitDatei.h>
  5. using namespace Framework;
  6. class GesamtTeamStatistik : public virtual ReferenceCounter
  7. {
  8. private:
  9. int teamNummer;
  10. Text *teamName;
  11. int teamFarbe;
  12. int gewonneneRunden;
  13. int punkte;
  14. int linienLength;
  15. int kills;
  16. int tode;
  17. public:
  18. // Konstruktor
  19. GesamtTeamStatistik();
  20. // Destruktor
  21. ~GesamtTeamStatistik();
  22. // nicht constant
  23. void initValues( InitDatei *dat );
  24. // constant
  25. int getTeamNummer() const;
  26. Text *getTeamName() const;
  27. Text *zTeamName() const;
  28. int getTeamFarbe() const;
  29. int getGewonneneRunden() const;
  30. int getPunkte() const;
  31. int getLinienLength() const;
  32. int getKills() const;
  33. int getTode() const;
  34. };
  35. #endif