2019-08-11 20:10:38 +02:00
|
|
|
#ifndef SANDBOX_H
|
|
|
|
#define SANDBOX_H
|
|
|
|
#include <vector>
|
|
|
|
class Sandbox
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Sandbox()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
/* Whether the platform has everything required to active all sandbnox modes */
|
|
|
|
virtual bool supported() = 0;
|
|
|
|
|
2021-10-03 23:46:40 +02:00
|
|
|
/* Activated after we have acquired resources (bound to ports etc.)*/
|
|
|
|
virtual bool enable(std::vector<std::string> fsPaths) = 0;
|
2019-08-11 20:10:38 +02:00
|
|
|
};
|
|
|
|
#endif
|