12 lines
234 B
C
12 lines
234 B
C
|
#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);
|
||
|
};
|