Changeset 5654 in orxonox.OLD for trunk/src/lib/coord
- Timestamp:
- Nov 20, 2005, 9:12:50 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/coord/p_node.cc
r5652 r5654 162 162 if (root != NULL) 163 163 { 164 const TiXmlElement* element = root->FirstChildElement(); 165 while (element != NULL) 164 LOAD_PARAM_START_CYCLE(root, element); 166 165 { 167 LoadParam <PNode>(element, "parent", this, &PNode::addChild, true)166 LoadParam_CYCLE(element, "parent", this, PNode, addChild) 168 167 .describe("adds a new Child to the current Node."); 169 168 170 element = element->NextSiblingElement();171 169 } 170 LOAD_PARAM_END_CYCLE(element); 172 171 } 173 172 }
Note: See TracChangeset
for help on using the changeset viewer.