diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-12-23 13:21:31 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2020-12-23 18:26:40 +0100 |
commit | 1047cb1e53358755cb12a5361cfc99118ed7e159 (patch) | |
tree | f69714ff2e7c1ddbd24beb8068e70c9c30f54602 /src/libutil/args.hh | |
parent | c9279b831e91a762851464826eaa8a8e30979578 (diff) |
Command: Remove examples()
Diffstat (limited to 'src/libutil/args.hh')
-rw-r--r-- | src/libutil/args.hh | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/libutil/args.hh b/src/libutil/args.hh index 68bbbb4f7..6ed541a32 100644 --- a/src/libutil/args.hh +++ b/src/libutil/args.hh @@ -228,25 +228,11 @@ struct Command : virtual Args virtual void prepare() { }; virtual void run() = 0; - struct Example - { - std::string description; - std::string command; - }; - - typedef std::list<Example> Examples; - - virtual Examples examples() { return Examples(); } - typedef int Category; static constexpr Category catDefault = 0; virtual Category category() { return catDefault; } - - void printHelp(const string & programName, std::ostream & out) override; - - nlohmann::json toJSON() override; }; typedef std::map<std::string, std::function<ref<Command>()>> Commands; |