summaryrefslogtreecommitdiffstats
path: root/comm/third_party/botan/src/cli/sandbox.h
blob: 2d6f5c4df89a3d743a0944f270617286622d7508 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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