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