summaryrefslogtreecommitdiffstats
path: root/comm/third_party/botan/src/cli/sandbox.h
diff options
context:
space:
mode:
Diffstat (limited to 'comm/third_party/botan/src/cli/sandbox.h')
-rw-r--r--comm/third_party/botan/src/cli/sandbox.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/comm/third_party/botan/src/cli/sandbox.h b/comm/third_party/botan/src/cli/sandbox.h
new file mode 100644
index 0000000000..2d6f5c4df8
--- /dev/null
+++ b/comm/third_party/botan/src/cli/sandbox.h
@@ -0,0 +1,32 @@
+/*
+* (C) 2019 David Carlier <devnexen@gmail.com>
+*
+* Botan is released under the Simplified BSD License (see license.txt)
+*/
+
+#ifndef BOTAN_CLI_SANDBOX_H_
+#define BOTAN_CLI_SANDBOX_H_
+
+#include <string>
+
+namespace Botan_CLI {
+
+class Sandbox
+ {
+ public:
+ explicit Sandbox();
+ virtual ~Sandbox();
+
+ bool init();
+
+ const std::string& name() const
+ {
+ return m_name;
+ }
+
+ private:
+ std::string m_name;
+ };
+}
+
+#endif