Rudiments
sax.h
1 // Copyright (c) 2002 David Muse
2 // See the COPYING file for more information.
3 
4  void reset();
5  void close();
6 
7  virtual bool parse()=0;
8 
9  bool parseLocalFile(const char *filename);
10  bool parseRemoteFile(const char *filename);
11  char skipWhitespace(char current);
12  char getCharacter();
13  bool mapFile();
14  void parseFailed(const char *thing);
15  private:
16  sax(const sax &x);
17  sax &operator=(const sax &x);
18 
19  saxprivate *pvt;
Definition: sax.h:12