2018-05-31 17:00:31 +08:00
|
|
|
/**
|
|
|
|
*
|
2018-12-07 15:50:18 +08:00
|
|
|
* CommandHandler.h
|
|
|
|
* An Tao
|
2018-05-31 17:00:31 +08:00
|
|
|
*
|
|
|
|
* Copyright 2018, An Tao. All rights reserved.
|
2018-12-07 15:50:18 +08:00
|
|
|
* https://github.com/an-tao/drogon
|
2018-05-31 17:00:31 +08:00
|
|
|
* Use of this source code is governed by a MIT license
|
|
|
|
* that can be found in the License file.
|
|
|
|
*
|
2018-11-16 13:26:14 +08:00
|
|
|
* Drogon
|
2018-05-31 17:00:31 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2018-05-28 17:08:12 +08:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <drogon/DrObject.h>
|
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
|
2018-10-14 15:56:54 +08:00
|
|
|
class CommandHandler : public virtual drogon::DrObjectBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual void handleCommand(std::vector<std::string> ¶meters) = 0;
|
2023-08-23 11:33:30 +08:00
|
|
|
|
2019-05-18 20:39:57 +08:00
|
|
|
virtual bool isTopCommand()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2023-08-23 11:33:30 +08:00
|
|
|
|
2019-05-18 20:39:57 +08:00
|
|
|
virtual std::string script()
|
|
|
|
{
|
|
|
|
return "";
|
|
|
|
}
|
2023-08-23 11:33:30 +08:00
|
|
|
|
2019-05-18 20:39:57 +08:00
|
|
|
virtual std::string detail()
|
|
|
|
{
|
|
|
|
return "";
|
|
|
|
}
|
2023-08-23 11:33:30 +08:00
|
|
|
|
2019-05-18 20:39:57 +08:00
|
|
|
virtual ~CommandHandler()
|
|
|
|
{
|
|
|
|
}
|
2018-11-16 13:26:14 +08:00
|
|
|
};
|