Lines Matching refs:JSON_API
160 #define JSON_API CPPTL_API macro
163 #define JSON_API __declspec(dllexport) macro
168 #define JSON_API __declspec(dllimport) macro
172 #if !defined(JSON_API)
173 #define JSON_API macro
403 class JSON_API Features {
517 class JSON_API Exception : public std::exception {
532 class JSON_API RuntimeError : public Exception {
543 class JSON_API LogicError : public Exception {
593 class JSON_API StaticString {
639 class JSON_API Value {
1108 class JSON_API PathArgument {
1139 class JSON_API Path {
1171 class JSON_API ValueIteratorBase {
1236 class JSON_API ValueConstIterator : public ValueIteratorBase {
1286 class JSON_API ValueIterator : public ValueIteratorBase {
1403 class JSONCPP_DEPRECATED("Use CharReader and CharReaderBuilder instead") JSON_API Reader {
1620 class JSON_API CharReader {
1644 class JSON_API Factory {
1666 class JSON_API CharReaderBuilder : public CharReader::Factory {
1740 bool JSON_API parseFromStream(
1769 JSON_API JSONCPP_ISTREAM& operator>>(JSONCPP_ISTREAM&, Value&);
1839 class JSON_API StreamWriter {
1855 class JSON_API Factory {
1868 JSONCPP_STRING JSON_API writeString(StreamWriter::Factory const& factory, Value const& root);
1886 class JSON_API StreamWriterBuilder : public StreamWriter::Factory {
1940 class JSONCPP_DEPRECATED("Use StreamWriter instead") JSON_API Writer {
1960 class JSONCPP_DEPRECATED("Use StreamWriterBuilder instead") JSON_API FastWriter : public Writer {
2019 class JSONCPP_DEPRECATED("Use StreamWriterBuilder instead") JSON_API StyledWriter : public Writer {
2087 class JSONCPP_DEPRECATED("Use StreamWriterBuilder instead") JSON_API StyledStreamWriter {
2133 JSONCPP_STRING JSON_API valueToString(Int value);
2134 JSONCPP_STRING JSON_API valueToString(UInt value);
2136 JSONCPP_STRING JSON_API valueToString(LargestInt value);
2137 JSONCPP_STRING JSON_API valueToString(LargestUInt value);
2138 JSONCPP_STRING JSON_API valueToString(double value);
2139 JSONCPP_STRING JSON_API valueToString(bool value);
2140 JSONCPP_STRING JSON_API valueToQuotedString(const char* value);
2144 JSON_API JSONCPP_OSTREAM& operator<<(JSONCPP_OSTREAM&, const Value& root);