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-29 05:49:26 +00:00
|
|
|
|
2018-05-28 10:29:14 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <drogon/DrObject.h>
|
|
|
|
#include "CommandHandler.h"
|
|
|
|
using namespace drogon;
|
|
|
|
namespace drogon_ctl
|
|
|
|
{
|
|
|
|
class help:public DrObject<help>,public CommandHandler
|
|
|
|
{
|
|
|
|
public:
|
2018-05-29 05:49:26 +00:00
|
|
|
virtual void handleCommand(std::vector<std::string> ¶meters) override;
|
2018-05-29 09:21:37 +00:00
|
|
|
virtual std::string script() override {return "display this message";}
|
|
|
|
virtual bool isTopCommand() override {return true;}
|
2018-05-28 10:29:14 +00:00
|
|
|
};
|
|
|
|
}
|