| 1373 | |
| 1374 | |
| 1375 | TiXmlDeclaration::TiXmlDeclaration( const char * _version, |
| 1376 | const char * _encoding, |
| 1377 | const char * _standalone ) |
| 1378 | : TiXmlNode( TiXmlNode::DECLARATION ) |
| 1379 | { |
| 1380 | version = _version; |
| 1381 | encoding = _encoding; |
| 1382 | standalone = _standalone; |
| 1383 | } |
| 1384 | |
| 1385 | |
| 1386 | #ifdef TIXML_USE_STL |