12345678910111213141516171819202122232425 |
- #include "TestDataCar.hpp"
- test::event::TestDataCar::TestDataCar() : color("white")
- {}
- test::event::TestDataCar::~TestDataCar() = default;
- ::std::string test::event::TestDataCar::getColor()
- {
- return this->color;
- }
- void test::event::TestDataCar::setColor(::std::string _color)
- {
- this->color = ::std::move(_color);
- }
|