Colour.cpp 468 B

12345678910111213141516171819202122
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2022-05-14
  6. * Changed: 2023-02-05
  7. *
  8. * */
  9. #include "Colour.hpp"
  10. test::event::Colour::Colour(const ::std::string &_value) : ls::std::core::Class("Colour")
  11. {
  12. this->value = _value;
  13. }
  14. test::event::Colour::~Colour() = default;
  15. ::std::string test::event::Colour::getValue() const
  16. {
  17. return this->value;
  18. }