diff options
Diffstat (limited to 'src/zen/cmds/run_cmd.h')
| -rw-r--r-- | src/zen/cmds/run_cmd.h | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/src/zen/cmds/run_cmd.h b/src/zen/cmds/run_cmd.h deleted file mode 100644 index 300c08c5b..000000000 --- a/src/zen/cmds/run_cmd.h +++ /dev/null @@ -1,30 +0,0 @@ -// Copyright Epic Games, Inc. All Rights Reserved. - -#pragma once - -#include "../zen.h" - -namespace zen { - -class RunCommand : public ZenCmdBase -{ -public: - static constexpr char Name[] = "run"; - static constexpr char Description[] = "Run command with special options"; - - RunCommand(); - ~RunCommand(); - - virtual void Run(const ZenCliOptions& GlobalOptions, int argc, char** argv) override; - virtual cxxopts::Options& Options() override { return m_Options; } - virtual ZenCmdCategory& CommandCategory() const override { return g_UtilitiesCategory; } - -private: - cxxopts::Options m_Options{Name, Description}; - int m_RunCount = 0; - int m_RunTime = -1; - std::string m_BaseDirectory; - int m_MaxBaseDirectoryCount = 10; -}; - -} // namespace zen |