- move command line wrapper support to rtphone

This commit is contained in:
2018-09-10 11:27:11 +03:00
parent 1960b7aaf1
commit 4ead35dcc6
2 changed files with 108 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#ifndef __HL_PROCESS_H
#define __HL_PROCESS_H
#include <string>
class OsProcess
{
public:
std::string execCommand(const std::string& cmdline);
};
#endif