light.hpp 368 B

123456789101112131415161718192021222324
  1. #ifndef SOURCE_LIGHT_HPP_DEFINED
  2. #define SOURCE_LIGHT_HPP_DEFINED
  3. #include <string>
  4. namespace cx_light {
  5. class light {
  6. public:
  7. light(std::string, std::string);
  8. ~light();
  9. std::string get_name();
  10. std::string get_address();
  11. light * copy();
  12. private:
  13. std::string name;
  14. std::string address;
  15. };
  16. }
  17. #endif