00001 #ifndef MD_CHARGUI 00002 #define MD_CHARGUI 00003 00004 class mdCommander { 00005 00006 bool acceptingInput; 00007 bool SCPImode; // false implies CLIPS mode 00008 int mdStdDevIdx; 00009 std::string currentDevice; 00010 00011 public: 00012 00013 mdCommander() {mdStdDevIdx=0;} 00014 ~mdCommander() {} 00015 00016 void driver(); 00017 void greet(); 00018 void help(); 00019 bool scpi(char *command); 00020 00021 }; 00022 00023 #endif
1.5.6