12345678910111213141516171819202122232425262728293031323334353637383940 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2024-05-30
- * Changed: 2024-09-11
- *
- * */
- #ifndef EVENT_PARAMETER_HPP
- #define EVENT_PARAMETER_HPP
- #include <list>
- #include <ls-std/os/dynamic-goal.hpp>
- #include <string>
- /*
- * @doc: class(name: 'EventParameter', package: 'event')
- * @doc: event.EventParameter.description('This class holds parameters which can be sent during event invocation.')
- * */
- namespace ls::std::event
- {
- class LS_STD_DYNAMIC_GOAL EventParameter
- {
- public:
- EventParameter();
- ~EventParameter();
- void addParameter(const ::std::string &_parameter);
- [[nodiscard]] ::std::list<::std::string> get() const;
- private:
- ::std::list<::std::string> parameters{};
- };
- }
- #endif
|