TeamsEditor.h 500 B

123456789101112131415161718192021222324252627
  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 : public virtual ReferenceCounter
  8. {
  9. private:
  10. Text pfad;
  11. Text fehler;
  12. EdSDatenbank *db;
  13. int id;
  14. public:
  15. // Konstruktor
  16. TeamsEditor( int id, char *pf, EdSDatenbank *db );
  17. // Destruktor
  18. ~TeamsEditor();
  19. // nicht constant
  20. bool prozessMessage( SKlient *zKlient );
  21. // constant
  22. char *getLetzterFehler() const;
  23. };