BeschreibungEditor.h 416 B

123456789101112131415161718192021222324
  1. #pragma once
  2. #include <Text.h>
  3. #include <Server.h>
  4. using namespace Framework;
  5. using namespace Network;
  6. class BeschreibungEditor : public virtual ReferenceCounter
  7. {
  8. private:
  9. Text pfad;
  10. Text fehler;
  11. public:
  12. // Konstruktor
  13. BeschreibungEditor(const char* pf);
  14. // Destruktor
  15. ~BeschreibungEditor();
  16. // nicht constant
  17. bool prozessMessage(SKlient* zKlient);
  18. // constant
  19. const char* getLetzterFehler() const;
  20. };