Changeset 9536 for code/branches/testing/src/libraries/core/command
- Timestamp:
- Mar 4, 2013, 10:47:26 PM (12 years ago)
- Location:
- code/branches/testing/src/libraries/core/command
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/testing/src/libraries/core/command/IOConsolePOSIX.cc
r8858 r9536 38 38 #include "util/Math.h" 39 39 #include "util/output/ConsoleWriter.h" 40 #include "util/output/OutputManager.h" 40 41 #include "core/Game.h" 41 42 #include "core/input/InputBuffer.h" … … 75 76 76 77 // Disable standard std::cout logging 77 ConsoleWriter::getInstance().disable();78 OutputManager::getInstance().getConsoleWriter().disable(); 78 79 // Redirect std::cout to an ostringstream 79 80 // (Other part is in the initialiser list) … … 103 104 std::cout.rdbuf(this->cout_.rdbuf()); 104 105 // Enable standard std::cout logging again 105 ConsoleWriter::getInstance().enable();106 OutputManager::getInstance().getConsoleWriter().enable(); 106 107 } 107 108 -
code/branches/testing/src/libraries/core/command/IOConsoleWindows.cc
r8858 r9536 35 35 #include "util/Math.h" 36 36 #include "util/output/ConsoleWriter.h" 37 #include "util/output/OutputManager.h" 37 38 #include "core/Game.h" 38 39 #include "core/input/InputBuffer.h" … … 53 54 { 54 55 // Disable standard this->cout_ logging 55 ConsoleWriter::getInstance().disable();56 OutputManager::getInstance().getConsoleWriter().disable(); 56 57 // Redirect std::cout to an ostringstream 57 58 // (Other part is in the initialiser list) … … 109 110 std::cout.rdbuf(this->cout_.rdbuf()); 110 111 // Enable standard this->cout_ logging again 111 ConsoleWriter::getInstance().enable();112 OutputManager::getInstance().getConsoleWriter().enable(); 112 113 113 114 resetTerminalMode(); -
code/branches/testing/src/libraries/core/command/Shell.cc
r9225 r9536 88 88 89 89 // Get the previous output and add it to the Shell 90 MemoryWriter::getInstance().resendOutput(this);90 OutputManager::getInstance().getMemoryWriter().resendOutput(this); 91 91 } 92 92
Note: See TracChangeset
for help on using the changeset viewer.