📄 xml.dox
字号:
/**
* \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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -