Isis 3 Programmer Reference
IsisXMLHistory.h
Go to the documentation of this file.
1 
24 #ifndef IsisXMLHistory_h
25 #define IsisXMLHistory_h
26 
27 //#include <sax2/DefaultHandler.hpp>
28 
29 #include "IsisAmlData.h"
30 #include "IsisXMLHandler.h"
31 #include "IsisXMLIgnore.h"
38 
39  public:
40 
41  ContentHandler *prevDocHandler;
42  ErrorHandler *prevErrorHandler;
43 
44 
45  IsisXMLHistory(char *PencodingName,
46  bool &PexpandNamespaces,
47  XERCES::SAX2XMLReader* &Pparser,
48  std::vector<IsisChangeData> *PChanges);
49 
50  ~IsisXMLHistory();
51 
52 // void endDocument();
53 
54  void endElement(const XMLCh *const uri, const XMLCh *const localname, const XMLCh *const qname);
55 
56  void characters(const XMLCh *const chars, const XMLSize_t length);
57 
58 
59  void startElement(const XMLCh *const uri,
60  const XMLCh *const localname,
61  const XMLCh *const qname,
62  const XERCES::Attributes &attributes);
63 
64 
65  private:
66 
67  // Saved arguments from constructor
68  char *encodingName;
69  bool expandNamespaces;
70  XERCES::SAX2XMLReader *parser;
71  std::vector<IsisChangeData> *changes;
72 
73  // Handlers this handler knows how to create
74  IsisXMLHandler *generalHandler;
75  IsisXMLIgnore *ignoreHandler;
76 
77 };
78 
79 
80 #endif
81 
82 
83 
84 
85