drogon/drogon_ctl/create_plugin.h

35 lines
695 B
C
Raw Normal View History

2019-03-29 07:34:14 +00:00
/**
*
* create_plugin.h
* An Tao
*
* Copyright 2018, An Tao. All rights reserved.
* https://github.com/an-tao/drogon
* Use of this source code is governed by a MIT license
* that can be found in the License file.
*
* Drogon
*
*/
#pragma once
#include <drogon/DrObject.h>
#include "CommandHandler.h"
using namespace drogon;
namespace drogon_ctl
{
class create_plugin : public DrObject<create_plugin>, public CommandHandler
{
public:
void handleCommand(std::vector<std::string> &parameters) override;
std::string script() override
2019-05-18 12:39:57 +00:00
{
return "create plugin class files";
}
2019-03-29 07:34:14 +00:00
protected:
2019-11-21 03:27:47 +00:00
std::string outputPath_{"."};
2019-03-29 07:34:14 +00:00
};
2019-05-18 12:39:57 +00:00
} // namespace drogon_ctl