diff options
| author | Per Larsson <[email protected]> | 2021-09-17 13:11:04 +0200 |
|---|---|---|
| committer | Per Larsson <[email protected]> | 2021-09-17 13:11:04 +0200 |
| commit | d812fcc3eab88733cbef084eefd089d22177aae4 (patch) | |
| tree | bb64fa6c64f9707246577de148749b35d1e25987 /zen/cmds/copy.cpp | |
| parent | Added helper function for iterating string tokens. (diff) | |
| parent | Added namespace scopes to more includes for better consistency (diff) | |
| download | archived-zen-d812fcc3eab88733cbef084eefd089d22177aae4.tar.xz archived-zen-d812fcc3eab88733cbef084eefd089d22177aae4.zip | |
Merge branch 'main' of https://github.com/EpicGames/zen
Diffstat (limited to 'zen/cmds/copy.cpp')
| -rw-r--r-- | zen/cmds/copy.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/zen/cmds/copy.cpp b/zen/cmds/copy.cpp index 4ce09c982..6b3965f99 100644 --- a/zen/cmds/copy.cpp +++ b/zen/cmds/copy.cpp @@ -7,6 +7,8 @@ #include <zencore/string.h> #include <zencore/timer.h> +namespace zen { + CopyCommand::CopyCommand() { m_Options.add_options()("h,help", "Print help"); @@ -94,3 +96,5 @@ CopyCommand::Run(const ZenCliOptions& GlobalOptions, int argc, char** argv) return 0; } + +} |