Constructor for text element. By default, it is treated as normal, encoded text. If you want it be output as a CDATA text element, set the parameter _cdata to 'true' */
| 1218 | element, set the parameter _cdata to 'true' |
| 1219 | */ |
| 1220 | TiXmlText (const char * initValue ) : TiXmlNode (TiXmlNode::TINYXML_TEXT) |
| 1221 | { |
| 1222 | SetValue( initValue ); |
| 1223 | cdata = false; |
| 1224 | } |
| 1225 | virtual ~TiXmlText() {} |
| 1226 | |
| 1227 | #ifdef TIXML_USE_STL |