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