mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-28 17:11:29 +00:00
7 lines
121 B
C++
7 lines
121 B
C++
#pragma once
|
|
|
|
class Process {
|
|
public:
|
|
static std::string execute(const std::string &cmd, bool return_result = true);
|
|
};
|