Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 435


Ignore:
Timestamp:
Dec 8, 2007, 5:42:02 PM (16 years ago)
Author:
landauf
Message:

removed debug output
changed filename

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/objecthierarchy/src/orxonox/core/ConfigValueContainer.cc

    r434 r435  
    33#include "ConfigValueContainer.h"
    44
    5 #define CONFIGFILEPATH "O:\\oh\\bin\\orxonox.ini"
     5//#define CONFIGFILEPATH "O:\\oh\\bin\\orxonox.ini"
     6#define CONFIGFILEPATH "orxonox.ini"
    67
    78namespace orxonox
     
    331332            file.getline(line, 1024);
    332333            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;
    334335        }
    335336
     
    338339        if ((ConfigValueContainer::configFileLines_s->size() > 0) && !isEmpty(*ConfigValueContainer::configFileLines_s->rbegin()))
    339340        {
    340             std::cout << "### newline added" << std::endl;
     341//            std::cout << "### newline added" << std::endl;
    341342            ConfigValueContainer::configFileLines_s->push_back("");
    342343        }
Note: See TracChangeset for help on using the changeset viewer.