template struct QPanda::JsonBackendParser

#include <Graph.h>

template <class T>
struct JsonBackendParser
{
    // methods

    static std::unique_ptr<T> Parse(const rapidjson::Value& root);
    int32_t ParseWeight(const rapidjson::Value& v);
    uint32_t ParseWeight(const rapidjson::Value& v);
    double ParseWeight(const rapidjson::Value& v);
};