2019-08-11 20:10:38 +02:00
|
|
|
#ifndef SANDBOXLINUX_H
|
|
|
|
#define SANDBOXLINUX_H
|
|
|
|
#include <memory>
|
|
|
|
#include <vector>
|
|
|
|
#include "sandbox.h"
|
|
|
|
class SandboxLinux : public Sandbox
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
using Sandbox::Sandbox;
|
|
|
|
bool supported() override;
|
2021-10-03 23:46:40 +02:00
|
|
|
bool enable(std::vector<std::string> fsPaths) override;
|
2019-08-11 20:10:38 +02:00
|
|
|
};
|
|
|
|
#endif
|