123456789101112131415161718192021222324252627282930313233 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2020-11-14
- * Changed: 2023-02-05
- *
- * */
- #ifndef LS_STD_TEST_DATA_CAR_HPP
- #define LS_STD_TEST_DATA_CAR_HPP
- #include <string>
- namespace test::event
- {
- class TestDataCar
- {
- public:
- TestDataCar();
- virtual ~TestDataCar();
- ::std::string getColor();
- void setColor(::std::string _color);
- private:
- ::std::string color{};
- };
- }
- #endif
|