summaryrefslogtreecommitdiff
path: root/src/commandline.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/commandline.h')
-rw-r--r--src/commandline.h15
1 files changed, 2 insertions, 13 deletions
diff --git a/src/commandline.h b/src/commandline.h
index d2cfbfa1..d0d62a72 100644
--- a/src/commandline.h
+++ b/src/commandline.h
@@ -150,9 +150,9 @@ protected:
};
-// runs a configured executable
+// runs a program or an executable
//
-class ExeCommand : public Command
+class RunCommand : public Command
{
protected:
std::string getUsageLine() const override;
@@ -164,17 +164,6 @@ protected:
};
-// runs an arbitrary executable
-//
-class RunCommand : public Command
-{
-protected:
- po::options_description getOptions() const;
- Meta meta() const override;
- std::optional<int> runPostOrganizer(OrganizerCore& organizer) override;
-};
-
-
// parses the command line and runs any given command
//
// the command line used to support a few commands but with no real conventions;