TestDataCar.hpp 533 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-11-14
  6. * Changed: 2020-11-14
  7. *
  8. * */
  9. #ifndef LS_STD_TEST_DATA_CAR_HPP
  10. #define LS_STD_TEST_DATA_CAR_HPP
  11. #include <string>
  12. namespace ls_std_test {
  13. class TestDataCar {
  14. public:
  15. TestDataCar();
  16. ~TestDataCar() = default;
  17. std::string getColor();
  18. void setColor(std::string _color);
  19. private:
  20. std::string color {};
  21. };
  22. }
  23. #endif