aboutsummaryrefslogtreecommitdiff
path: root/zen/cmds/hash.cpp
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2021-09-17 09:54:50 +0200
committerStefan Boberg <[email protected]>2021-09-17 09:54:50 +0200
commit6da25650aa4bf87dcd5e3d612c615e0b8240015f (patch)
treee23e686b6296e860a010b6e3fa580eea8481c185 /zen/cmds/hash.cpp
parentMoved zenserverprocess into zenutil/zenserverprocess.h (diff)
downloadarchived-zen-6da25650aa4bf87dcd5e3d612c615e0b8240015f.tar.xz
archived-zen-6da25650aa4bf87dcd5e3d612c615e0b8240015f.zip
Added namespace scopes to more includes for better consistency
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;
}
+
+}