Files Classes Functions Hierarchy
00001 #ifndef KEYBOARD_H 00002 #define KEYBOARD_H 00003 00004 #include <rawinterpreter.h> 00005 00006 // 00007 // Brief: Terminal. 00008 // 00009 class keyboardinterface 00010 { 00011 public: 00012 00013 // Process an initial string of commands 00014 // before user if possible. 00015 keyboardinterface(string const initinput=""); 00016 00017 // Display the current stack. 00018 void print(); 00019 00020 }; 00021 00022 00023 00024 00025 00026 00027 00028 #endif 00029 00030
1.5.8