Rudiments
jsonsax.h
1 // Copyright (c) 1999-2018 David Muse
2 // See the COPYING file for more information.
3 
4  private:
5  bool parse();
6  bool parseObject(char current, char *next);
7  bool parseMember(char current, char *next);
8  bool parseStr(stringbuffer *str,
9  char current, char *next);
10  bool parseValue(char current, char *next);
11  bool parseArray(char current, char *next);
12  bool parseNumber(stringbuffer *str,
13  char current, char *next);
14  bool parseLiteral(const char *literal,
15  char current, char *next);
16 
17  jsonsax(const jsonsax &x);
18  jsonsax &operator=(const jsonsax &x);
19 
20  jsonsaxprivate *pvt;
Definition: jsonsax.h:12
Definition: stringbuffer.h:13