123456789101112131415161718192021222324 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2020-11-14
- * Changed: 2020-11-14
- *
- * */
- #include "TestDataCar.hpp"
- ls_std_test::TestDataCar::TestDataCar():
- color("white")
- {}
- std::string ls_std_test::TestDataCar::getColor()
- {
- return this->color;
- }
- void ls_std_test::TestDataCar::setColor(std::string _color)
- {
- this->color = std::move(_color);
- }
|