Commit 22c84555 authored by John Bonn's avatar John Bonn
Browse files

Added some documentation that was left out of previous commit

parent 15404ea5
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -25,6 +25,10 @@ namespace Isis {
  }


  /**
   * @brief Switch to a new content handler and continue processing using the new handler.
   *
   */
  void XmlStackedHandler::switchToNewHandler(XmlStackedHandler *nextHandler) {
    nextHandler->startElement(m_lastStartNamespaceURI, m_lastStartLocalName,
                              m_lastStartQName, m_lastStartAtts);
+2 −5
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@ namespace Isis {

  /**
   *
   * @brief This enables stack-based XML parsing of XML files.
   * @brief Manage a stack of content handlers for reading XML files.
   *
   *   This class is designed to work with the XmlStackedHandler class. Use this
   *   in-place of a QXmlSimpleReader if you want to use stack-based Xml parsing. The
@@ -18,9 +18,6 @@ namespace Isis {
   *
   * @see XmlStackedHandler
   *
   * The naming of this class is:
   *   XmlStackedHandler + Reader (parent class).
   *
   * @author 2012-??-?? Steven Lambright
   *
   * @internal