// SPDX-FileCopyrightText: 2018 Kitsune Ral // SPDX-License-Identifier: LGPL-2.1-or-later #pragma once #include "stateevent.h" namespace Quotient { /*! Create an event with proper type from a JSON object * * Use this factory template to detect the type from the JSON object * contents (the detected event type should derive from the template * parameter type) and create an event object of that type. */ template inline event_ptr_tt loadEvent(const QJsonObject& fullJson) { return doLoadEvent(fullJson, fullJson[TypeKeyL].toString()); } //! \brief Create an event from a type string and content JSON //! //! Use this template to resolve the C++ type from the Matrix type string in //! \p matrixType and create an event of that type by passing all parameters //! to BaseEventT::basicJson(). template inline event_ptr_tt loadEvent( const QString& matrixType, const BasicJsonParamTs&... basicJsonParams) { return doLoadEvent( BaseEventT::basicJson(matrixType, basicJsonParams...), matrixType); } template struct JsonConverter> : JsonObjectUnpacker> { using JsonObjectUnpacker>::load; static auto load(const QJsonObject& jo) { return loadEvent(jo); } }; } // namespace Quotient