1234567891011121314151617181920212223242526272829303132 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2022-05-14
- * Changed: 2022-07-02
- *
- * */
- #ifndef LS_STD_COLOUR_HPP
- #define LS_STD_COLOUR_HPP
- #include <ls_std/ls_std_core.hpp>
- namespace ls_std_event_test
- {
- class Colour : public ls::std::core::Class
- {
- public:
- explicit Colour(const ::std::string &_value);
- ~Colour() override = default;
- [[nodiscard]] ::std::string getValue() const;
- private:
- ::std::string value{};
- };
- }
- #endif
|