Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 4491 in orxonox.OLD for orxonox/trunk/src/lib/tinyxml/tinyxml.h


Ignore:
Timestamp:
Jun 3, 2005, 1:40:28 AM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: new tinyXML-lib installed (v-2.3.4)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/lib/tinyxml/tinyxml.h

    r4261 r4491  
    7373const int TIXML_MAJOR_VERSION = 2;
    7474const int TIXML_MINOR_VERSION = 3;
    75 const int TIXML_PATCH_VERSION = 3;
     75const int TIXML_PATCH_VERSION = 4;
    7676
    7777/*      Internal structure for tracking location of items
     
    483483                first. IterateChildren will return null when done.
    484484        */
    485         const TiXmlNode* IterateChildren( TiXmlNode* previous ) const;
     485        const TiXmlNode* IterateChildren( const TiXmlNode* previous ) const;
    486486        TiXmlNode* IterateChildren( TiXmlNode* previous );
    487487
    488488        /// 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;
    490490        TiXmlNode* IterateChildren( const char * value, TiXmlNode* previous );
    491491
    492492    #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.
    494494        TiXmlNode* IterateChildren( const std::string& _value, TiXmlNode* previous ) {  return IterateChildren (_value.c_str (), previous);     }       ///< STL std::string form.
    495495        #endif
     
    14181418};
    14191419
    1420 
     1420#ifdef _MSC_VER
     1421#pragma warning( default : 4530 )
     1422#pragma warning( default : 4786 )
    14211423#endif
    14221424
     1425#endif
     1426
Note: See TracChangeset for help on using the changeset viewer.