| 1298 | } |
| 1299 | |
| 1300 | TiXmlDeclaration::TiXmlDeclaration(const char* _version, const char* _encoding, const char* _standalone) : TiXmlNode(TiXmlNode::DECLARATION) |
| 1301 | { |
| 1302 | version = _version; |
| 1303 | encoding = _encoding; |
| 1304 | standalone = _standalone; |
| 1305 | } |
| 1306 | |
| 1307 | #ifdef TIXML_USE_STL |
| 1308 | TiXmlDeclaration::TiXmlDeclaration(const xr_string& _version, const xr_string& _encoding, const xr_string& _standalone) : TiXmlNode(TiXmlNode::DECLARATION) |