Rudiments
dtd.h
1 // Copyright (c) 2002 David Muse
2 // See the COPYING file for more information.
3 
4 #ifndef RUDIMENTS_DTD_H
5 #define RUDIMENTS_DTD_H
6 
7 #include <rudiments/private/dtdincludes.h>
8 
9 class dtdprivate;
10 
12 class RUDIMENTS_DLLSPEC dtd {
13  public:
14 
16  dtd();
17 
19  ~dtd();
20 
23  bool parseFile(const char *filename);
24 
27  bool parseString(const char *string);
28 
31  const char *getError();
32 
34  xmldomnode *xml();
35 
36  #include <rudiments/private/dtd.h>
37 };
38 
39 #endif
Definition: xmldomnode.h:116
Definition: dtd.h:12