Changeset 4834 in orxonox.OLD for orxonox/trunk/src/util/track/track_manager.cc
- Timestamp:
- Jul 11, 2005, 5:47:23 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/util/track/track_manager.cc
r4832 r4834 394 394 \param root the TiXmlElement to load the Data from 395 395 */ 396 bool TrackManager::loadParams( TiXmlElement* root) 397 { 398 TiXmlElement* element; 399 TiXmlNode* container; 396 bool TrackManager::loadParams(const TiXmlElement* root) 397 { 400 398 double x, y, z, d; 401 399 402 element = root->FirstChildElement(); 403 while( element != NULL) 404 { 400 LOAD_PARAM_START_CYCLE 401 405 402 LoadParam<TrackManager>(element, "WorkOn", this, &TrackManager::workOnS, true) 406 403 .describe("Selects a TrackElement (by name) to work on"); … … 448 445 } 449 446 */ 450 element = element->NextSiblingElement(); 451 } 452 447 LOAD_PARAM_END_CYCLE; 453 448 } 454 449
Note: See TracChangeset
for help on using the changeset viewer.