/* * 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_INTEGER_FACTORY_HPP #define LS_STD_SERIALIZABLE_JSON_INTEGER_FACTORY_HPP #include #include namespace ls_std { class SerializableJsonIntegerFactory : public ls_std::Class, public ls_std::IFactory { public: SerializableJsonIntegerFactory(); ~SerializableJsonIntegerFactory() override = default; std::shared_ptr build() override; }; } #endif