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' */
| 1136 | element, set the parameter _cdata to 'true' |
| 1137 | */ |
| 1138 | TiXmlText(const char* initValue) : TiXmlNode(TiXmlNode::TEXT) |
| 1139 | { |
| 1140 | SetValue(initValue); |
| 1141 | cdata = false; |
| 1142 | } |
| 1143 | virtual ~TiXmlText() {} |
| 1144 | |
| 1145 | #ifdef TIXML_USE_STL |