12345678910111213141516171819202122232425262728293031 |
- #ifndef LS_STD_TEST_DATA_CAR_HPP
- #define LS_STD_TEST_DATA_CAR_HPP
- #include <string>
- namespace ls_std_test {
- class TestDataCar {
- public:
- TestDataCar();
- ~TestDataCar() = default;
- std::string getColor();
- void setColor(std::string _color);
- private:
- std::string color {};
- };
- }
- #endif
|