11 lines
172 B
C
11 lines
172 B
C
|
|
#ifndef SHELL_SERVICE_H
|
||
|
|
#define SHELL_SERVICE_H
|
||
|
|
|
||
|
|
#include <string>
|
||
|
|
|
||
|
|
class ShellService {
|
||
|
|
public:
|
||
|
|
static std::string exec(const std::string& command);
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|