drogon/drogon_ctl/CommandHandler.h

29 lines
637 B
C
Raw Normal View History

2018-05-31 09:00:31 +00:00
/**
*
* @file
* @author An Tao
* @section LICENSE
*
* Copyright 2018, An Tao. All rights reserved.
* Use of this source code is governed by a MIT license
* that can be found in the License file.
*
* @section DESCRIPTION
*
*/
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-06-07 10:16:30 +00:00
virtual std::string detail(){return "";}
2018-05-28 09:08:12 +00:00
virtual ~CommandHandler(){}
};