This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangyang-zerotierone/ext/librethinkdbxx/src/json_p.h
2017-11-02 07:05:11 -07:00

20 lines
445 B
C++

#pragma once
#include "datum.h"
namespace rapidjson {
class CrtAllocator;
template<typename> struct UTF8;
template <typename, typename> class GenericValue;
template <typename> class MemoryPoolAllocator;
typedef GenericValue<UTF8<char>, MemoryPoolAllocator<CrtAllocator> > Value;
}
namespace RethinkDB {
Datum read_datum(const std::string&);
Datum read_datum(const rapidjson::Value &json);
std::string write_datum(const Datum&);
}