Changeset 435 for code/branches/objecthierarchy/src/orxonox
- Timestamp:
- Dec 8, 2007, 5:42:02 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/objecthierarchy/src/orxonox/core/ConfigValueContainer.cc
r434 r435 3 3 #include "ConfigValueContainer.h" 4 4 5 #define CONFIGFILEPATH "O:\\oh\\bin\\orxonox.ini" 5 //#define CONFIGFILEPATH "O:\\oh\\bin\\orxonox.ini" 6 #define CONFIGFILEPATH "orxonox.ini" 6 7 7 8 namespace orxonox … … 331 332 file.getline(line, 1024); 332 333 ConfigValueContainer::configFileLines_s->push_back(line); 333 std::cout << "### ->" << line << "<- : empty: " << isEmpty(line) << " comment: " << isComment(line) << std::endl;334 // std::cout << "### ->" << line << "<- : empty: " << isEmpty(line) << " comment: " << isComment(line) << std::endl; 334 335 } 335 336 … … 338 339 if ((ConfigValueContainer::configFileLines_s->size() > 0) && !isEmpty(*ConfigValueContainer::configFileLines_s->rbegin())) 339 340 { 340 std::cout << "### newline added" << std::endl;341 // std::cout << "### newline added" << std::endl; 341 342 ConfigValueContainer::configFileLines_s->push_back(""); 342 343 }
Note: See TracChangeset
for help on using the changeset viewer.