/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2021-04-23 * Changed: 2021-04-23 * * */ #include #include #include ls_std::SerializableJSONBooleanFactory::SerializableJSONBooleanFactory() : ls_std::Class("SerializableJSONBooleanFactory") {} std::shared_ptr ls_std::SerializableJSONBooleanFactory::build() { std::shared_ptr value = std::make_shared(); std::shared_ptr serializable = std::make_shared(value); value->setSerializable(serializable); return std::dynamic_pointer_cast(value); }