TestDataCar.hpp 534 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-11-14
  6. * Changed: 2021-04-23
  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. {
  14. class TestDataCar
  15. {
  16. public:
  17. TestDataCar();
  18. ~TestDataCar() = default;
  19. std::string getColor();
  20. void setColor(std::string _color);
  21. private:
  22. std::string color{};
  23. };
  24. }
  25. #endif