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