2025-06-10 16:46:58 +02:00
|
|
|
#ifndef SHELL_SERVICE_H
|
|
|
|
|
#define SHELL_SERVICE_H
|
|
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
|
|
class ShellService {
|
|
|
|
|
public:
|
|
|
|
|
static std::string exec(const std::string& command);
|
2025-06-11 09:55:00 +02:00
|
|
|
static std::string getHomePath();
|
2025-06-10 16:46:58 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|