Colour.hpp 609 B

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