Wizard
Software Engineering Project - Wizard
|
Public Member Functions | |
LookaheadParser (char *str) | |
bool | EnterObject () |
bool | EnterArray () |
const char * | NextObjectKey () |
bool | NextArrayValue () |
int | GetInt () |
double | GetDouble () |
const char * | GetString () |
bool | GetBool () |
void | GetNull () |
void | SkipObject () |
void | SkipArray () |
void | SkipValue () |
Value * | PeekValue () |
int | PeekType () |
bool | IsValid () |
Protected Member Functions | |
void | SkipOut (int depth) |
![]() | |
LookaheadParserHandler (char *str) | |
void | ParseNext () |
bool | Null () |
bool | Bool (bool b) |
bool | Int (int i) |
bool | Uint (unsigned u) |
bool | Int64 (int64_t i) |
bool | Uint64 (uint64_t u) |
bool | Double (double d) |
bool | RawNumber (const char *, SizeType, bool) |
bool | String (const char *str, SizeType length, bool) |
bool | StartObject () |
bool | Key (const char *str, SizeType length, bool) |
bool | EndObject (SizeType) |
bool | StartArray () |
bool | EndArray (SizeType) |
Additional Inherited Members | |
![]() | |
enum | LookaheadParsingState { kInit , kError , kHasNull , kHasBool , kHasNumber , kHasString , kHasKey , kEnteringObject , kExitingObject , kEnteringArray , kExitingArray } |
![]() | |
Value | v_ |
LookaheadParsingState | st_ |
Reader | r_ |
InsituStringStream | ss_ |
![]() | |
static const int | parseFlags = kParseDefaultFlags | kParseInsituFlag |