Changeset 7750 in orxonox.OLD for trunk/src/lib
- Timestamp:
- May 21, 2006, 12:47:22 PM (19 years ago)
- Location:
- trunk/src/lib/shell
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/shell/shell.cc
r7746 r7750 54 54 55 55 56 void Shell::testShell()57 {58 for (unsigned int i = 0; i < 100; i++)59 PRINT(0)("%d\n", i);60 }61 SHELL_COMMAND(test, Shell, testShell);62 63 64 56 /** 65 57 * standard constructor … … 513 505 ShellBuffer::getInstance()->debug(); 514 506 } 507 508 /** 509 * @brief a Handy Function, to Test the behaviour of the Shell. 510 */ 511 void Shell::testShell() const 512 { 513 for (unsigned int i = 0; i < 100; i++) 514 PRINT(0)("%d\n", i); 515 } 516 SHELL_COMMAND(test, Shell, testShell); 517 515 518 } -
trunk/src/lib/shell/shell.h
r7744 r7750 79 79 void debug() const; 80 80 81 void testShell() ;81 void testShell() const; 82 82 private: 83 83 void repositionText();
Note: See TracChangeset
for help on using the changeset viewer.