RundenTeamStatistik.h 751 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #ifndef RundenTeamStatistik_H
  2. #define RundenTeamStatistik_H
  3. #include <Text.h>
  4. #include <InitDatei.h>
  5. using namespace Framework;
  6. class RundenTeamStatistik
  7. {
  8. private:
  9. int teamNummer;
  10. Text *teamName;
  11. int teamFarbe;
  12. int ergebnis;
  13. int linienLength;
  14. int kills;
  15. int tode;
  16. int ref;
  17. public:
  18. // Konstruktor
  19. RundenTeamStatistik();
  20. // Destruktor
  21. ~RundenTeamStatistik();
  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 getErgebnis() const;
  30. int getLinienLength() const;
  31. int getKills() const;
  32. int getTode() const;
  33. // Reference Counting
  34. RundenTeamStatistik *getThis();
  35. RundenTeamStatistik *release();
  36. };
  37. #endif