1234567891011121314151617181920212223242526272829303132 |
- #ifndef LS_STD_COLOUR_HPP
- #define LS_STD_COLOUR_HPP
- #include <ls-std/ls-std-core.hpp>
- namespace test::event
- {
- class Colour : public ls::std::core::Class
- {
- public:
- explicit Colour(const ::std::string &_value);
- ~Colour() noexcept override;
- [[nodiscard]] ::std::string getValue() const;
- private:
- ::std::string value{};
- };
- }
- #endif
|