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