drogon/drogon_ctl/CommandHandler.h

14 lines
346 B
C
Raw Normal View History

2018-05-28 09:08:12 +00:00
#pragma once
#include <drogon/DrObject.h>
#include <vector>
#include <string>
class CommandHandler:public virtual drogon::DrObjectBase {
public:
virtual void handleCommand(std::vector<std::string> &parameters)=0;
virtual bool isTopCommand(){return false;}
2018-05-28 10:29:14 +00:00
virtual std::string script(){return "";}
2018-05-28 09:08:12 +00:00
virtual ~CommandHandler(){}
};