diff --git a/src/engine/helper/HL_Process.cpp b/src/engine/helper/HL_Process.cpp index 363245e8..6cbd25c7 100644 --- a/src/engine/helper/HL_Process.cpp +++ b/src/engine/helper/HL_Process.cpp @@ -12,6 +12,11 @@ #include #include "helper/HL_String.h" +int OsProcess::execSystem(const std::string& cmd) +{ + return system(cmd.c_str()); +} + std::string OsProcess::execCommand(const std::string& cmd) { std::string output;