command.h

Go to the documentation of this file.
00001 #ifndef COMMAND_H
00002 #define COMMAND_H
00003 
00004 #include "scan345.h"
00005 
00006 class Command : public Scan345
00007 {
00008   Q_OBJECT;
00009 
00010  public:
00011   Command(QObject *parent);
00012   typedef Scan345 inherited;
00013 
00014   void  exec_command(const char *buf);
00015 
00016  private:
00017   int   BadInput(int type, char *str1);
00018   int   TestDirectory(char *dir);
00019   void  mar_init_params();
00020 };
00021 
00022 #endif