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