16 Zeilen
346 B
C
16 Zeilen
346 B
C
|
#ifndef SANDBOXLINUX_H
|
||
|
#define SANDBOXLINUX_H
|
||
|
#include <memory>
|
||
|
#include <vector>
|
||
|
#include "sandbox.h"
|
||
|
class SandboxLinux : public Sandbox
|
||
|
{
|
||
|
public:
|
||
|
using Sandbox::Sandbox;
|
||
|
bool supported() override;
|
||
|
bool enableForInit() override;
|
||
|
bool enablePreWorker(std::vector<std::string> fsPaths) override;
|
||
|
bool enableForWorker() override;
|
||
|
};
|
||
|
#endif
|