初版。

This commit is contained in:
2026-02-26 22:40:23 +08:00
commit 4ab7d84597
15 changed files with 2175 additions and 0 deletions

16
exec_cmd.h Normal file
View File

@@ -0,0 +1,16 @@
#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