Colour.cpp 484 B

1234567891011121314151617181920212223242526
  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-23
  7. *
  8. * */
  9. #include "Colour.hpp"
  10. using ls::std::core::Class;
  11. using std::string;
  12. using test::event::Colour;
  13. Colour::Colour(const string &_value) : Class("Colour")
  14. {
  15. this->value = _value;
  16. }
  17. Colour::~Colour() noexcept = default;
  18. string Colour::getValue() const
  19. {
  20. return this->value;
  21. }