17 lines
242 B
C
17 lines
242 B
C
|
|
#ifndef EXEC_CMD
|
||
|
|
#define EXEC_CMD
|
||
|
|
|
||
|
|
#include <string>
|
||
|
|
#include <vector>
|
||
|
|
|
||
|
|
class ExecCMD
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
ExecCMD();
|
||
|
|
|
||
|
|
public:
|
||
|
|
static int ExecuteCmd(const std::string& exe, std::vector<std::string>& args, const std::string& workDir);
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|