Colour.cpp 437 B

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