Changeset 4491 in orxonox.OLD for orxonox/trunk/src/lib/tinyxml/tinyxml.h
- Timestamp:
- Jun 3, 2005, 1:40:28 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/tinyxml/tinyxml.h
r4261 r4491 73 73 const int TIXML_MAJOR_VERSION = 2; 74 74 const int TIXML_MINOR_VERSION = 3; 75 const int TIXML_PATCH_VERSION = 3;75 const int TIXML_PATCH_VERSION = 4; 76 76 77 77 /* Internal structure for tracking location of items … … 483 483 first. IterateChildren will return null when done. 484 484 */ 485 const TiXmlNode* IterateChildren( TiXmlNode* previous ) const;485 const TiXmlNode* IterateChildren( const TiXmlNode* previous ) const; 486 486 TiXmlNode* IterateChildren( TiXmlNode* previous ); 487 487 488 488 /// This flavor of IterateChildren searches for children with a particular 'value' 489 const TiXmlNode* IterateChildren( const char * value, TiXmlNode* previous ) const;489 const TiXmlNode* IterateChildren( const char * value, const TiXmlNode* previous ) const; 490 490 TiXmlNode* IterateChildren( const char * value, TiXmlNode* previous ); 491 491 492 492 #ifdef TIXML_USE_STL 493 const TiXmlNode* IterateChildren( const std::string& _value, TiXmlNode* previous ) const { return IterateChildren (_value.c_str (), previous); } ///< STL std::string form.493 const TiXmlNode* IterateChildren( const std::string& _value, const TiXmlNode* previous ) const { return IterateChildren (_value.c_str (), previous); } ///< STL std::string form. 494 494 TiXmlNode* IterateChildren( const std::string& _value, TiXmlNode* previous ) { return IterateChildren (_value.c_str (), previous); } ///< STL std::string form. 495 495 #endif … … 1418 1418 }; 1419 1419 1420 1420 #ifdef _MSC_VER 1421 #pragma warning( default : 4530 ) 1422 #pragma warning( default : 4786 ) 1421 1423 #endif 1422 1424 1425 #endif 1426
Note: See TracChangeset
for help on using the changeset viewer.