#pragma once #include #include using namespace Framework; using namespace Network; class BeschreibungEditor : public virtual ReferenceCounter { private: Text pfad; Text fehler; public: // Konstruktor BeschreibungEditor(const char* pf); // Destruktor ~BeschreibungEditor(); // nicht constant bool prozessMessage(SKlient* zKlient); // constant const char* getLetzterFehler() const; };