XALM  1.0
 Vše Třídy Prostory jmen Soubory Funkce Proměnné Výčty Hodnoty výčtu Friends Definice maker
Třídy | Výčty | Proměnné
Dokumentace prostoru jmen tinyxml2

Třídy

class  DynArray
 
struct  Entity
 
class  MemPool
 
class  MemPoolT
 
class  StrPair
 
class  XMLAttribute
 An attribute is a name-value pair. ...
 
class  XMLComment
 An XML Comment. ...
 
class  XMLConstHandle
 A variant of the XMLHandle class for working with const XMLNodes and Documents. ...
 
class  XMLDeclaration
 In correct XML the declaration is the first entry in the file. ...
 
class  XMLDocument
 A Document binds together all the functionality. ...
 
class  XMLElement
 The element is a container class. ...
 
class  XMLHandle
 A XMLHandle is a class that wraps a node pointer with null checks; this is an incredibly useful thing. ...
 
class  XMLNode
 XMLNode is a base class for every object that is in the XML Document Object Model (DOM), except XMLAttributes. ...
 
class  XMLPrinter
 Printing functionality. ...
 
class  XMLText
 XML text. ...
 
class  XMLUnknown
 Any tag that TinyXML-2 doesn't recognize is saved as an unknown. ...
 
class  XMLUtil
 
class  XMLVisitor
 Implements the interface to the "Visitor pattern" (see the Accept() method.) If you call the Accept() method, it requires being passed a XMLVisitor class to handle callbacks. ...
 

Výčty

enum  XMLError {
  XML_NO_ERROR = 0, XML_SUCCESS = 0, XML_NO_ATTRIBUTE, XML_WRONG_ATTRIBUTE_TYPE,
  XML_ERROR_FILE_NOT_FOUND, XML_ERROR_FILE_COULD_NOT_BE_OPENED, XML_ERROR_FILE_READ_ERROR, XML_ERROR_ELEMENT_MISMATCH,
  XML_ERROR_PARSING_ELEMENT, XML_ERROR_PARSING_ATTRIBUTE, XML_ERROR_IDENTIFYING_TAG, XML_ERROR_PARSING_TEXT,
  XML_ERROR_PARSING_CDATA, XML_ERROR_PARSING_COMMENT, XML_ERROR_PARSING_DECLARATION, XML_ERROR_PARSING_UNKNOWN,
  XML_ERROR_EMPTY_DOCUMENT, XML_ERROR_MISMATCHED_ELEMENT, XML_ERROR_PARSING, XML_CAN_NOT_CONVERT_TEXT,
  XML_NO_TEXT_NODE
}
 
enum  Whitespace { PRESERVE_WHITESPACE, COLLAPSE_WHITESPACE }
 

Proměnné

static const int NUM_ENTITIES = 5
 
static const Entity entities [NUM_ENTITIES]
 

Dokumentace výčtových typů

Hodnoty výčtu
PRESERVE_WHITESPACE 
COLLAPSE_WHITESPACE 

Definice je uvedena na řádku 1434 v souboru tinyxml2.h.

Hodnoty výčtu
XML_NO_ERROR 
XML_SUCCESS 
XML_NO_ATTRIBUTE 
XML_WRONG_ATTRIBUTE_TYPE 
XML_ERROR_FILE_NOT_FOUND 
XML_ERROR_FILE_COULD_NOT_BE_OPENED 
XML_ERROR_FILE_READ_ERROR 
XML_ERROR_ELEMENT_MISMATCH 
XML_ERROR_PARSING_ELEMENT 
XML_ERROR_PARSING_ATTRIBUTE 
XML_ERROR_IDENTIFYING_TAG 
XML_ERROR_PARSING_TEXT 
XML_ERROR_PARSING_CDATA 
XML_ERROR_PARSING_COMMENT 
XML_ERROR_PARSING_DECLARATION 
XML_ERROR_PARSING_UNKNOWN 
XML_ERROR_EMPTY_DOCUMENT 
XML_ERROR_MISMATCHED_ELEMENT 
XML_ERROR_PARSING 
XML_CAN_NOT_CONVERT_TEXT 
XML_NO_TEXT_NODE 

Definice je uvedena na řádku 979 v souboru tinyxml2.h.

Dokumentace proměnných

const Entity tinyxml2::entities[NUM_ENTITIES]
static
Initializer:
= {
{ "quot", 4, DOUBLE_QUOTE },
{ "amp", 3, '&' },
{ "apos", 4, SINGLE_QUOTE },
{ "lt", 2, '<' },
{ "gt", 2, '>' }
}
static const char DOUBLE_QUOTE
Definition: tinyxml2.cpp:38
static const char SINGLE_QUOTE
Definition: tinyxml2.cpp:37

Definice je uvedena na řádku 74 v souboru tinyxml2.cpp.

const int tinyxml2::NUM_ENTITIES = 5
static