Changeset 9861 in orxonox.OLD for branches/new_class_id/src/lib/shell
- Timestamp:
- Oct 1, 2006, 1:37:36 PM (18 years ago)
- Location:
- branches/new_class_id/src/lib/shell
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/new_class_id/src/lib/shell/Makefile.am
r9709 r9861 6 6 libORXshell_a_SOURCES = \ 7 7 shell.cc \ 8 shell_buffer.cc \9 8 shell_input.cc \ 10 9 shell_command.cc \ … … 16 15 noinst_HEADERS= \ 17 16 shell.h \ 18 shell_buffer.h \19 17 shell_input.h \ 20 18 shell_command_class.h \ -
branches/new_class_id/src/lib/shell/shell.cc
r9715 r9861 18 18 #include "shell.h" 19 19 #include "shell_command.h" 20 #include " shell_buffer.h"20 #include "debug_buffer.h" 21 21 #include "shell_input.h" 22 22 … … 65 65 this->setName("Shell"); 66 66 67 this->shellBuffer = ShellBuffer::getInstance();67 this->shellBuffer = DebugBuffer::getInstance(); 68 68 69 69 // EVENT-Handler subscription of '`' to all States. … … 446 446 { 447 447 this->flush(); 448 ShellBuffer::addBufferLineStatic("orxonox - shell\n ==================== \n", NULL);448 DebugBuffer::addBufferLineStatic("orxonox - shell\n ==================== \n", NULL); 449 449 } 450 450 -
branches/new_class_id/src/lib/shell/shell.h
r9715 r9861 14 14 15 15 #include "shell_input.h" 16 #include " shell_buffer.h"16 #include "debug_buffer.h" 17 17 #include "material.h" 18 18 … … 93 93 private: 94 94 // GENERAL 95 ShellBuffer* shellBuffer; //!< The local ShellBuffer.95 DebugBuffer* shellBuffer; //!< The local ShellBuffer. 96 96 97 97 bool bActive; //!< If the shell is active. -
branches/new_class_id/src/lib/shell/shell_input.cc
r9715 r9861 161 161 bool ShellInput::executeCommand() 162 162 { 163 ShellBuffer::addBufferLineStatic("Execute Command: %s\n", this->inputLine.c_str());163 DebugBuffer::addBufferLineStatic("Execute Command: %s\n", this->inputLine.c_str()); 164 164 165 165 if (this->inputLine.empty())
Note: See TracChangeset
for help on using the changeset viewer.