/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2021-04-30 * Changed: 2021-05-02 * * */ #ifndef LS_STD_SERIALIZABLE_JSON_EVENT_FACTORY_HPP #define LS_STD_SERIALIZABLE_JSON_EVENT_FACTORY_HPP #include #include namespace ls_std { class SerializableJsonEventFactory : public ls_std::Class, public ls_std::IFactory { public: SerializableJsonEventFactory(); ~SerializableJsonEventFactory() override = default; std::shared_ptr build() override; }; } #endif