| 1347 | |
| 1348 | |
| 1349 | TiXmlDeclaration::TiXmlDeclaration( const char * _version, |
| 1350 | const char * _encoding, |
| 1351 | const char * _standalone ) |
| 1352 | : TiXmlNode( TiXmlNode::TINYXML_DECLARATION ) |
| 1353 | { |
| 1354 | version = _version; |
| 1355 | encoding = _encoding; |
| 1356 | standalone = _standalone; |
| 1357 | } |
| 1358 | |
| 1359 | |
| 1360 | #ifdef TIXML_USE_STL |