Changeset 11071 for code/trunk/src/external/tinyxml/ticpp.h
- Timestamp:
- Jan 17, 2016, 10:29:21 PM (9 years ago)
- Location:
- code/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed
-
code/trunk/src/external/tinyxml/ticpp.h
r8351 r11071 966 966 Create an exact duplicate of this node and return it. 967 967 968 @note Using auto_ptr to manage the memory declared on the heap by TiXmlNode::Clone.968 @note Using unique_ptr to manage the memory declared on the heap by TiXmlNode::Clone. 969 969 @code 970 970 // Now using clone … … 972 972 ticpp::Node* sectionToClone; 973 973 sectionToClone = doc.FirstChild( "settings" ); 974 std:: auto_ptr< ticpp::Node > clonedNode = sectionToClone->Clone();974 std::unique_ptr< ticpp::Node > clonedNode = sectionToClone->Clone(); 975 975 // Now you can use the clone. 976 976 ticpp::Node* node2 = clonedNode->FirstChildElement()->FirstChild(); … … 980 980 @return Pointer the duplicate node. 981 981 */ 982 std:: auto_ptr< Node > Clone() const;982 std::unique_ptr< Node > Clone() const; 983 983 984 984 /**
Note: See TracChangeset
for help on using the changeset viewer.