Colour.hpp 585 B

1234567891011121314151617181920212223242526272829303132
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2022-05-14
  6. * Changed: 2022-07-02
  7. *
  8. * */
  9. #ifndef LS_STD_COLOUR_HPP
  10. #define LS_STD_COLOUR_HPP
  11. #include <ls_std/ls_std_core.hpp>
  12. namespace ls_std_event_test
  13. {
  14. class Colour : public ls::std::core::Class
  15. {
  16. public:
  17. explicit Colour(const ::std::string &_value);
  18. ~Colour() override = default;
  19. [[nodiscard]] ::std::string getValue() const;
  20. private:
  21. ::std::string value{};
  22. };
  23. }
  24. #endif