#include <tinyxml.h>
Public Member Functions | |
virtual bool | Accept (TiXmlVisitor *content) const |
bool | CDATA () const |
Queries whether this represents text using a CDATA section. | |
TiXmlText & | operator= (const TiXmlText &base) |
virtual const char * | Parse (const char *p, TiXmlParsingData *data, TiXmlEncoding encoding) |
virtual void | Print (FILE *cfile, int depth) const |
void | SetCDATA (bool _cdata) |
Turns on or off a CDATA representation of text. | |
TiXmlText (const char *initValue) | |
TiXmlText (const TiXmlText ©) | |
virtual const TiXmlText * | ToText () const |
Cast to a more defined type. Will return null not of the requested type. | |
virtual TiXmlText * | ToText () |
Cast to a more defined type. Will return null not of the requested type. | |
virtual | ~TiXmlText () |
Protected Member Functions | |
bool | Blank () const |
virtual TiXmlNode * | Clone () const |
[internal use] Creates a new Element and returns it. | |
void | CopyTo (TiXmlText *target) const |
Private Attributes | |
bool | cdata |
Friends | |
class | TiXmlElement |
XML text. A text node can have 2 ways to output the next. "normal" output and CDATA. It will default to the mode it was parsed from the XML file and you generally want to leave it alone, but you can change the output mode with SetCDATA() and query it with CDATA().
TiXmlText::TiXmlText | ( | const char * | initValue | ) | [inline] |
virtual TiXmlText::~TiXmlText | ( | ) | [inline, virtual] |
TiXmlText::TiXmlText | ( | const TiXmlText & | copy | ) | [inline] |
bool TiXmlText::Accept | ( | TiXmlVisitor * | content | ) | const [virtual] |
Walk the XML tree visiting this node and all of its children.
Implements TiXmlNode.
Definition at line 1321 of file tinyxml.cpp.
bool TiXmlText::Blank | ( | ) | const [protected] |
Definition at line 1632 of file tinyxmlparser.cpp.
bool TiXmlText::CDATA | ( | ) | const [inline] |
TiXmlNode * TiXmlText::Clone | ( | ) | const [protected, virtual] |
[internal use] Creates a new Element and returns it.
Implements TiXmlNode.
Definition at line 1327 of file tinyxml.cpp.
void TiXmlText::CopyTo | ( | TiXmlText * | target | ) | const [protected] |
Definition at line 1314 of file tinyxml.cpp.
const char * TiXmlText::Parse | ( | const char * | p, |
TiXmlParsingData * | data, | ||
TiXmlEncoding | encoding | ||
) | [virtual] |
Implements TiXmlBase.
Definition at line 1498 of file tinyxmlparser.cpp.
void TiXmlText::Print | ( | FILE * | cfile, |
int | depth | ||
) | const [virtual] |
All TinyXml classes can print themselves to a filestream or the string class (TiXmlString in non-STL mode, std::string in STL mode.) Either or both cfile and str can be null.
This is a formatted print, and will insert tabs and newlines.
(For an unformatted stream, use the << operator.)
Implements TiXmlBase.
Definition at line 1293 of file tinyxml.cpp.
void TiXmlText::SetCDATA | ( | bool | _cdata | ) | [inline] |
virtual const TiXmlText* TiXmlText::ToText | ( | ) | const [inline, virtual] |
virtual TiXmlText* TiXmlText::ToText | ( | ) | [inline, virtual] |
friend class TiXmlElement [friend] |
bool TiXmlText::cdata [private] |