| 1395 | |
| 1396 | |
| 1397 | TiXmlDeclaration::TiXmlDeclaration( const char * _version, |
| 1398 | const char * _encoding, |
| 1399 | const char * _standalone ) |
| 1400 | : TiXmlNode( TiXmlNode::TINYXML_DECLARATION ) |
| 1401 | { |
| 1402 | version = _version; |
| 1403 | encoding = _encoding; |
| 1404 | standalone = _standalone; |
| 1405 | } |
| 1406 | |
| 1407 | |
| 1408 | #ifdef TIXML_USE_STL |