#ifndef Message_h #define Message_h #include class Message { private: std::string message; public: Message(); Message(std::string); //Konstruktor with specific parameter Message(Message&); //& für die Referenz, copy constructor void printMessage(); void setMessage(std::string); std::string getMessage(); }; #endif