12345678910111213141516171819202122232425 |
- #include "Colour.hpp"
- using ls::std::core::Class;
- using std::string;
- using std::string_view;
- using test::event::Colour;
- Colour::Colour(string_view _value) : Class("Colour"), value(_value)
- {}
- Colour::~Colour() noexcept = default;
- string_view Colour::getValue() const
- {
- return this->value;
- }
|