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:
|
|
|
|
|
2018-05-29 05:49:26 +00:00
|
|
|
virtual void handleCommand(std::vector<std::string> ¶meters)=0;
|
2018-05-29 09:21:37 +00:00
|
|
|
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(){}
|
|
|
|
};
|