dlldepend/cmd_opr.h

12 lines
234 B
C
Raw Normal View History

2024-03-08 11:35:52 +08:00
#pragma once
#include <string>
class CmdOpr
{
public:
CmdOpr() = default;
~CmdOpr() = default;
public:
static std::string exec_cmd(const std::string& cmd);
static bool add_environment_path(const std::string& path);
};