Rudiments
propsax.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 parseExclamationComment(
9  char current, char *next);
10  void parseRestOfLine(char ch,
11  char *next, bool invalue);
12  bool parsePoundComment(char current, char *next);
13  bool parseKey(char current, char *next);
14  bool parseValue(char ch, char *next);
15 
16  propsax(const propsax &x);
17  propsax &operator=(const propsax &x);
18 
19  propsaxprivate *pvt;
Definition: propsax.h:12