Public Types | |
typedef char | Char |
typedef const Char * | Location |
Public Member Functions | |
Reader () | |
Reader (const Features &features) | |
bool | parse (const std::string &document, Value &root, bool collectComments=true) |
bool | parse (const char *beginDoc, const char *endDoc, Value &root, bool collectComments=true) |
bool | parse (std::istream &is, Value &root, bool collectComments=true) |
std::string | getFormatedErrorMessages () const |
std::string | getFormattedErrorMessages () const |
Classes | |
class | ErrorInfo |
class | Token |
typedef char Char |
Constructs a Reader allowing the specified feature set for parsing.
Read a Value from a JSON document.
document | UTF-8 encoded string containing the document to read. | |
root | [out] Contains the root value of the document if it was successfully parsed. | |
collectComments | true to collect comment and allow writing them back during serialization, false to discard comments. This parameter is ignored if Features::allowComments_ is false . |
true
if the document was successfully parsed, false
if an error occurred. bool parse | ( | const char * | beginDoc, | |
const char * | endDoc, | |||
Value & | root, | |||
bool | collectComments = true | |||
) |
Read a Value from a JSON document.
beginDoc | Pointer on the beginning of the UTF-8 encoded string of the document to read. | |
endDoc | Pointer on the end of the UTF-8 encoded string of the document to read. Must be >= beginDoc. | |
root | [out] Contains the root value of the document if it was successfully parsed. | |
collectComments | true to collect comment and allow writing them back during serialization, false to discard comments. This parameter is ignored if Features::allowComments_ is false . |
true
if the document was successfully parsed, false
if an error occurred. Parse from input stream.
std::string getFormatedErrorMessages | ( | ) | const |
Returns a user friendly string that list errors in the parsed document.
std::string getFormattedErrorMessages | ( | ) | const |
Returns a user friendly string that list errors in the parsed document.