TeamsEditor.h 561 B

12345678910111213141516171819202122232425262728293031
  1. #pragma once
  2. #include <Text.h>
  3. #include <Server.h>
  4. #include "Datenbank.h"
  5. using namespace Framework;
  6. using namespace Network;
  7. class TeamsEditor
  8. {
  9. private:
  10. Text pfad;
  11. Text fehler;
  12. EdSDatenbank *db;
  13. int id;
  14. int ref;
  15. public:
  16. // Konstruktor
  17. TeamsEditor( int id, char *pf, EdSDatenbank *db );
  18. // Destruktor
  19. ~TeamsEditor();
  20. // nicht constant
  21. bool prozessMessage( SKlient *zKlient );
  22. // constant
  23. char *getLetzterFehler() const;
  24. // Reference Counting
  25. TeamsEditor *getThis();
  26. TeamsEditor *release();
  27. };