Rudiments
inisax.h
1// Copyright (c) 1999-2018 David Muse
2// See the COPYING file for more information.
3
4 inisax(inisax &x) {};
5 inisax &operator=(inisax &x) { return *this; };
6
7 private:
8 bool parse();
9
10 bool parseWhitespace(char current, char *next);
11 bool parseSemicolonComment(char current, char *next);
12 void parseRestOfLine(char *next);
13 bool parsePoundComment(char current, char *next);
14 bool parseSection(char *next);
15 void parseRestOfSectionName(char *next);
16 bool parseKey(char current, char *next);
17 bool parseValue(char *next);
18
19 inisaxprivate *pvt;
Definition inisax.h:12