diff options
Diffstat (limited to 'src/cli/sandbox.h')
-rw-r--r-- | src/cli/sandbox.h | 23 |
1 files changed, 14 insertions, 9 deletions
diff --git a/src/cli/sandbox.h b/src/cli/sandbox.h index c719b8390..2d6f5c4df 100644 --- a/src/cli/sandbox.h +++ b/src/cli/sandbox.h @@ -4,7 +4,8 @@ * Botan is released under the Simplified BSD License (see license.txt) */ -#ifndef BOTAN_SANDBOX_H_ +#ifndef BOTAN_CLI_SANDBOX_H_ +#define BOTAN_CLI_SANDBOX_H_ #include <string> @@ -13,15 +14,19 @@ namespace Botan_CLI { class Sandbox { public: - explicit Sandbox(); - bool init(); - virtual ~Sandbox(); - const std::string& name() const - { - return m_name; - } + explicit Sandbox(); + virtual ~Sandbox(); + + bool init(); + + const std::string& name() const + { + return m_name; + } + private: - std::string m_name; + std::string m_name; }; } + #endif |