1234567891011121314151617181920212223 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2020-11-14
- * Changed: 2021-04-23
- *
- * */
- #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);
- }
|