Rudiments
jsonsax.h
1 // Copyright (c) 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 parseStr(stringbuffer *str,
8  char current, char *next);
9  bool parseValue(char current, char *next);
10  bool parseArray(char current, char *next);
11  bool parseNumber(stringbuffer *str,
12  char current, char *next);
13  bool parseLiteral(const char *literal,
14  char current, char *next);
15 
16  jsonsax(const jsonsax &x);
17  jsonsax &operator=(const jsonsax &x);
18 
19  jsonsaxprivate *pvt;
Definition: stringbuffer.h:13
Definition: jsonsax.h:12