aboutsummaryrefslogtreecommitdiff
path: root/zen/cmds/hash.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'zen/cmds/hash.cpp')
-rw-r--r--zen/cmds/hash.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/zen/cmds/hash.cpp b/zen/cmds/hash.cpp
index b6276dbc1..e9484c453 100644
--- a/zen/cmds/hash.cpp
+++ b/zen/cmds/hash.cpp
@@ -9,6 +9,8 @@
#include <ppl.h>
+namespace zen {
+
HashCommand::HashCommand()
{
m_Options.add_options()("d,dir", "Directory to scan", cxxopts::value<std::string>(m_ScanDirectory))(
@@ -123,3 +125,5 @@ HashCommand::Run(const ZenCliOptions& GlobalOptions, int argc, char** argv)
// TODO: implement snapshot enumeration and display
return 0;
}
+
+}