drogon/drogon_ctl/cmd.h

22 lines
432 B
C
Raw Normal View History

2018-05-31 17:00:31 +08:00
/**
*
2018-12-07 15:50:18 +08:00
* cmd.h
* An Tao
2018-05-31 17:00:31 +08:00
*
* Copyright 2018, An Tao. All rights reserved.
2018-12-07 15:50:18 +08:00
* https://github.com/an-tao/drogon
2018-05-31 17:00:31 +08:00
* Use of this source code is governed by a MIT license
* that can be found in the License file.
*
2018-11-16 13:26:14 +08:00
* Drogon
2018-05-31 17:00:31 +08:00
*
*/
#pragma once
#include <vector>
#include <string>
#include <iostream>
#define ARGS_ERROR_STR "args error!use help command to get usage!"
2018-10-14 15:56:54 +08:00
void exeCommand(std::vector<std::string> &parameters);