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