BeschreibungEditor.h 513 B

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