⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 index.html

📁 一个j2me中很做要的包
💻 HTML
字号:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"><title>Main Page</title><link href="doxygen.css" rel="stylesheet" type="text/css"></head><body bgcolor="#ffffff"><!-- Generated by Doxygen 1.2.10 --><center><a class="qindex" href="index.html">Main Page</a> &nbsp; <a class="qindex" href="hierarchy.html">Class Hierarchy</a> &nbsp; <a class="qindex" href="annotated.html">Compound List</a> &nbsp; <a class="qindex" href="files.html">File List</a> &nbsp; <a class="qindex" href="functions.html">Compound Members</a> &nbsp; </center><hr><h1>TinyXml Documentation</h1><p> <b> TinyXml </b><p>TinyXml is a simple, small, C++ XML parser that can be easily  integrating into other programs.<p><b> What it does. </b><p>In brief, TinyXml parses an XML document, and builds from that a  Document Object Model that can be read, modified, and saved.<p>XML stands for "eXtensible Markup Language." It allows you to create  your own document markups. Where HTML does a very good job of marking  documents for browsers, XML allows you to define any kind of document  markup, for example a document that describes a "to do" list for an  organizer application. XML is a very structured and convenient format. All those random file formats created to store application data can  all be replaced with XML. One parser for everything.<p>There are different ways to access and interact with XML data. TinyXml uses a Document Object Model, meaning the XML data is parsed into a tree objects that can be browsed and manipulated, and then  written back to disk. You can also construct an XML document from  scratch with C++ objects and write this to disk.<p>TinyXml is designed to be easy and fast. It is one header and three cpp  files. Simply add these to your project and off you go. There is an  example to get you started. It is released under the ZLib license,  so you can use it in open source or commercial code.<p>It attempts to be a flexible parser, but with truly correct and  compliant XML output (with the exception of the character set, below.) TinyXml should compile on any reasonably C++  system. It does not rely on exceptions or RTTI, and only uses the STL string class.<p><b> What it doesn't do. </b><p>It doesn抰 parse or use DTDs (Document Type Definitions) or XSL抯  (eXtensible Stylesheet Language.) It is limited to the ASCII  character set. There are other parsers out there (check out  www.sourceforge.org, search for XML) that are much more fully  featured. But they are also much bigger, take longer to set up in  your project, have a higher learning curve, and have a more  restrictive license. If you are working with browsers or have more  complete XML needs, TinyXml is not the parser for you.<p><b> Code Status. </b><p>Currently in use, TinyXml is looking pretty stable. If you find bugs, send them in and we'll get them straightened out as soon as possible.<p>It currently does not recognize "entity references", meaning special  characters. This is a missing feature that will hopefully be  included soon. Namely: <div class="fragment"><pre>    &amp;amp;   &amp;    &amp;lt;    &lt;    &amp;gt;    &gt;    &amp;quot;  "    &amp;apos;  

⌨️ 快捷键说明

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