xml.dox

来自「简单的xml解析类」· DOX 代码 · 共 58 行

DOX
58
字号
/**
 * \defgroup Xml Xml
 * \brief Xml Extension.
 * 
 * The Blue Xml Extension provides a Sax-style Xml parser as well as a
 * Dom-style Xml parser.  In addition to the basic Xml parsing, it offers
 * XPath functionality which allows for advanced searching and querying
 * of a Dom node-tree.  These features let applications easily use Xml.
 * 
 * This is an official extension for the Blue library.
 */


/**
 * \defgroup XmlExceptions Exceptions
 * \brief  Exceptions thrown by Xml classes.
 * \ingroup Xml
 */
 
 
/**
 * \mainpage Blue Xml Extension
 *
 * \section intro Introduction
 *
 * The Blue Xml Extension provides a Sax-style Xml parser as well as a
 * Dom-style Xml parser.  In addition to the basic Xml parsing, it offers
 * XPath functionality which allows for advanced searching and querying
 * of a Dom node-tree.  These features let applications easily use Xml.
 * 
 * This is an official extension for the Blue library.
 *
 * For information on compiling and linking applications to this extension,
 * please read the Install.[platform] file in the main directory.
 *
 *
 * \section usage Using the Xml Extension
 *
 * Using the Xml extension is extremely easy.  There are two ways of
 * parsing an Xml file.  You can use the Dom method, which parses the Xml
 * document into a tree of nodes.  You can alternatively use the Sax
 * method which uses Signals and Slots to send notifications when various
 * items in the Xml document are encountered.
 *
 * Here is a sample application that uses the Dom method:
 *
 * \include SampleDom.cpp
 *
 *
 * Here is a sample application that uses the Sax method:
 *
 * \include SampleSax.cpp
 *
 *
 * Here is a sample application that uses the XPathExpression class:
 *
 * \include SampleXPath.cpp
 */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?