DRDE/APIG/include/mdCommander.h

38 lines
632 B
C
Raw Normal View History

#ifndef MD_CHARGUI
#define MD_CHARGUI
class mdCommander {
bool acceptingInput;
2014-01-11 19:34:15 +00:00
bool EPPmode; // RFC 8
int mdStdDevIdx;
std::string currentDevice;
public:
mdCommander() {mdStdDevIdx=0;}
~mdCommander() {}
2014-01-11 19:34:15 +00:00
void acMainMenu();
void check();
void create();
void driver();
2014-01-11 19:34:15 +00:00
void eppMainMenu();
void flushCommand();
void greet();
void help();
2014-01-11 19:34:15 +00:00
void info();
void renew();
void sendCommand();
void showCommand();
void trash();
void transfer();
void transferCheck();
void update();
bool epp(char *command);
};
#endif