diff options
| author | Stefan Boberg <[email protected]> | 2021-09-17 09:54:50 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-09-17 09:54:50 +0200 |
| commit | 6da25650aa4bf87dcd5e3d612c615e0b8240015f (patch) | |
| tree | e23e686b6296e860a010b6e3fa580eea8481c185 /zen/cmds/hash.cpp | |
| parent | Moved zenserverprocess into zenutil/zenserverprocess.h (diff) | |
| download | archived-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.cpp | 4 |
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; } + +} |