SSEditor.h 515 B

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