drogon/drogon_ctl/create_project.h

37 lines
746 B
C
Raw Permalink Normal View History

/**
*
* create_project.h
* An Tao
*
* Copyright 2018, An Tao. All rights reserved.
2018-12-07 07:50:18 +00:00
* 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.
*
2018-11-16 05:26:14 +00:00
* Drogon
*
*/
#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_project : public DrObject<create_project>, 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 a project";
}
2018-10-14 07:56:54 +00:00
protected:
2019-11-21 03:27:47 +00:00
std::string outputPath_{"."};
2018-10-14 07:56:54 +00:00
void createProject(const std::string &projectName);
};
2019-05-18 12:39:57 +00:00
} // namespace drogon_ctl