drogon/drogon_ctl/CommandHandler.h

45 lines
719 B
C
Raw Permalink Normal View History

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