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/up.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/up.cpp')
| -rw-r--r-- | zen/cmds/up.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/zen/cmds/up.cpp b/zen/cmds/up.cpp index a1047fd57..048133fc9 100644 --- a/zen/cmds/up.cpp +++ b/zen/cmds/up.cpp @@ -4,10 +4,12 @@ #include <zencore/filesystem.h> #include <zencore/logging.h> -#include <zenserverprocess.h> +#include <zenutil/zenserverprocess.h> #include <memory> +namespace zen { + UpCommand::UpCommand() { } @@ -98,3 +100,5 @@ DownCommand::Run(const ZenCliOptions& GlobalOptions, int argc, char** argv) return 0; } + +} |