#ifndef SOURCE_LIGHT_HPP_DEFINED #define SOURCE_LIGHT_HPP_DEFINED #include namespace cx_light { class light { public: light(std::string, std::string); ~light(); std::string get_name(); std::string get_address(); light * copy(); private: std::string name; std::string address; }; } #endif