#ifndef REGISTRATION_H #define REGISTRATION_H #include namespace MyNamespace { class Registration { public: Registration(std::string s) : s(s) {} std::string message() { return s; } private: std::string s; }; }//namespace #endif