Colour.hpp 578 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: 2023-02-23
  7. *
  8. * */
  9. #ifndef LS_STD_COLOUR_HPP
  10. #define LS_STD_COLOUR_HPP
  11. #include <ls-std/ls-std-core.hpp>
  12. namespace test::event
  13. {
  14. class Colour : public ls::std::core::Class
  15. {
  16. public:
  17. explicit Colour(const ::std::string &_value);
  18. ~Colour() noexcept override;
  19. [[nodiscard]] ::std::string getValue() const;
  20. private:
  21. ::std::string value{};
  22. };
  23. }
  24. #endif