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