2019-08-11 20:10:38 +02:00
|
|
|
#ifndef SANDBOXOPENBSD_H
|
|
|
|
#define SANDBOXOPENBSD_H
|
|
|
|
#include "sandbox.h"
|
|
|
|
|
|
|
|
class SandboxOpenBSD : public Sandbox
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
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
|