#include "tinyxml2.h"
#include <new>
#include <cstddef>
Go to the source code of this file.
Definition at line 67 of file tinyxml2.cpp.
Data Fields |
int |
length |
|
const char * |
pattern |
|
char |
value |
|
#define DELETE_ATTRIBUTE |
( |
|
attrib | ) |
|
Value:{ \
if ( attrib ) { \
MemPool* pool = attrib->_memPool; \
attrib->~XMLAttribute(); \
pool->Free( attrib ); \
} \
}
Definition at line 56 of file tinyxml2.cpp.
#define DELETE_NODE |
( |
|
node | ) |
|
Value:{ \
if ( node ) { \
MemPool* pool = node->_memPool; \
node->~XMLNode(); \
pool->Free( node ); \
} \
}
Definition at line 49 of file tinyxml2.cpp.
const char CARRIAGE_RETURN = (char)0x0d |
|
static |
const char DOUBLE_QUOTE = '\"' |
|
static |
const char LINE_FEED = (char)0x0a |
|
static |
const char SINGLE_QUOTE = '\'' |
|
static |
const unsigned char TIXML_UTF_LEAD_0 = 0xefU |
|
static |
const unsigned char TIXML_UTF_LEAD_1 = 0xbbU |
|
static |
const unsigned char TIXML_UTF_LEAD_2 = 0xbfU |
|
static |