Changeset 5973 for code/branches/console/src/libraries/core/Core.cc
- Timestamp:
- Oct 20, 2009, 10:32:06 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/console/src/libraries/core/Core.cc
r5929 r5973 64 64 #include "Identifier.h" 65 65 #include "Language.h" 66 #include "IOConsole.h" 66 67 #include "LuaState.h" 67 68 #include "ScopedSingletonManager.h" … … 265 266 // create a shell 266 267 this->shell_.reset(new Shell()); 268 // create persistent io console 269 this->ioConsole_.reset(new IOConsole()); 267 270 268 271 // Create singletons that always exist (in other libraries) … … 444 447 ScopedSingletonManager::update<ScopeID::Graphics>(time); 445 448 } 449 // process console text 450 this->ioConsole_->update(time); 446 451 // process thread commands 447 452 this->tclThreadManager_->update(time);
Note: See TracChangeset
for help on using the changeset viewer.