- Timestamp:
- Apr 10, 2008, 5:35:20 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core2/src/orxonox/core/ConfigValueContainer.cc
r1020 r1023 53 53 this->varname_ = varname; 54 54 55 this->value_ = defvalue; 55 56 this->bAddedDescription_ = false; 56 57 … … 97 98 void ConfigValueContainer::update() 98 99 { 99 std::cout << "AAA1: " << this->value_ << std::endl;100 std::cout << " : " << ConfigFileManager::getSingleton()->getValue(this->type_, this->sectionname_, this->varname_, this->defvalueString_) << std::endl;101 100 this->value_.fromString(ConfigFileManager::getSingleton()->getValue(this->type_, this->sectionname_, this->varname_, this->defvalueString_)); 102 std::cout << "AAA2: " << this->value_ << std::endl;103 101 } 104 102
Note: See TracChangeset
for help on using the changeset viewer.