| 123456789101112131415161718192021222324 |
- #ifndef SOURCE_LIGHT_HPP_DEFINED
- #define SOURCE_LIGHT_HPP_DEFINED
- #include <string>
- 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
|