drogon/drogon_ctl/create.h

31 lines
727 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.
*
2018-11-16 05:26:14 +00:00
* Drogon
2018-05-31 09:00:31 +00:00
*
*/
#pragma once
#include <drogon/DrObject.h>
#include "CommandHandler.h"
using namespace drogon;
namespace drogon_ctl
{
2018-10-14 07:56:54 +00:00
class create : public DrObject<create>, public CommandHandler
{
public:
virtual void handleCommand(std::vector<std::string> &parameters) override;
virtual std::string script() override { return "create controller or view class files"; }
virtual bool isTopCommand() override { return true; }
virtual std::string detail() override;
};
} // namespace drogon_ctl