2016-03-16 20:15:24 +00:00
|
|
|
#ifndef COMMANDEXECUTOR_H
|
|
|
|
#define COMMANDEXECUTOR_H
|
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
|
2016-03-18 17:48:16 +00:00
|
|
|
namespace mshconsole{
|
|
|
|
class CommandExecutor
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
class ExitException {};
|
|
|
|
public:
|
|
|
|
virtual int executeCmd(std::vector<std::string>* args) = 0;
|
|
|
|
virtual int executeCmd(const std::string& args) = 0;
|
|
|
|
virtual size_t howManyCmds() const = 0;
|
|
|
|
void exit();
|
|
|
|
CommandExecutor();
|
|
|
|
};
|
|
|
|
}
|
2016-03-16 20:15:24 +00:00
|
|
|
|
|
|
|
#endif // COMMANDEXECUTOR_H
|