SSEditor.h 435 B

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