File failed to load: https://isis.astrogeology.usgs.gov/3.9.0/Object/assets/jax/output/NativeMML/config.js
Isis 3 Programmer Reference
XmlStackedHandlerReader.h
1 #ifndef XmlStackedHandlerReader_H
2 #define XmlStackedHandlerReader_H
3 
4 #include <QXmlSimpleReader>
5 
6 template <typename T> class QStack;
7 
8 namespace Isis {
9  class XmlStackedHandler;
10 
26  public:
29 
30  virtual void popContentHandler();
31  virtual void pushContentHandler(XmlStackedHandler *newHandler);
32  XmlStackedHandler *topContentHandler();
33 
34  private:
35  Q_DISABLE_COPY(XmlStackedHandlerReader);
36 
37  QStack<XmlStackedHandler *> *m_contentHandlers;
38  };
39 }
40 
41 #endif
virtual void pushContentHandler(XmlStackedHandler *newHandler)
Push a contentHandler and maybe continue parsing...
XML Handler that parses XMLs in a stack-oriented way.
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31
Manage a stack of content handlers for reading XML files.

U.S. Department of the Interior | U.S. Geological Survey
ISIS | Privacy & Disclaimers | Astrogeology Research Program
To contact us, please post comments and questions on the USGS Astrogeology Discussion Board
To report a bug, or suggest a feature go to: ISIS Github
File Modified: 07/12/2023 23:33:55