Changeset 19801
- Timestamp:
- 02/06/07 11:30:57 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
juggler/trunk/modules/jackal/config/jccl/Config/Configuration.cpp
r19729 r19801 207 207 // Go through the <include> XML elements. 208 208 cppdom::NodeList inc_list = cfg_node->getChildren(tokens::INCLUDE); 209 for ( cppdom::NodeList::iterator itr = inc_list.begin(); 210 itr != inc_list.end(); 211 ++itr ) 212 { 213 std::string cfg_filename = (*itr)->getCdata(); 209 typedef cppdom::NodeList::iterator iter_type; 210 for ( iter_type itr = inc_list.begin(); itr != inc_list.end(); ++itr ) 211 { 212 const std::string cfg_filename = (*itr)->getCdata(); 214 213 vprDEBUG(jcclDBG_CONFIG, vprDBG_CONFIG_LVL) 215 214 << "Including " << cfg_filename << std::endl … … 217 216 218 217 // Load the file by making a recursive call to this method. We use 219 // mFileName so that the fully expanded path to the includin file is218 // mFileName so that the fully expanded path to the including file is 220 219 // used as the "parent" file. 221 220 load(cfg_filename, mFileName);
