diff options
author | David Kalnischkies <david@kalnischkies.de> | 2015-10-26 11:42:32 +0100 |
---|---|---|
committer | David Kalnischkies <david@kalnischkies.de> | 2015-11-04 18:04:04 +0100 |
commit | 6079b276a959086ff18302cab752b6d7cfe5ad9f (patch) | |
tree | 151f75397170a05635202a604dd45d1fb9be85ca /apt-private/private-cmndline.h | |
parent | 011188e3920f21e6883c2dab956b3d4fb4e8cbfa (diff) |
move apts cmdline helper type into -private
Its not as simple as I initially thought to abstract this enough to make
it globally usable, so lets not pollute global namespace with this for
now.
Git-Dch: Ignore
Diffstat (limited to 'apt-private/private-cmndline.h')
-rw-r--r-- | apt-private/private-cmndline.h | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/apt-private/private-cmndline.h b/apt-private/private-cmndline.h index aee679bf8..ac17e2e8a 100644 --- a/apt-private/private-cmndline.h +++ b/apt-private/private-cmndline.h @@ -23,12 +23,18 @@ enum class APT_CMD { APT_SORTPKG, }; -bool ShowHelp(CommandLine &CmdL, CommandLine::DispatchWithHelp const * Cmds); -std::vector<CommandLine::DispatchWithHelp> GetCommands(); +struct aptDispatchWithHelp +{ + const char *Match; + bool (*Handler)(CommandLine &); + const char *Help; +}; +std::vector<aptDispatchWithHelp> GetCommands(); +bool ShowHelp(CommandLine &CmdL, aptDispatchWithHelp const * Cmds); -APT_PUBLIC std::vector<CommandLine::DispatchWithHelp> ParseCommandLine(CommandLine &CmdL, APT_CMD const Binary, +APT_PUBLIC std::vector<CommandLine::Dispatch> ParseCommandLine(CommandLine &CmdL, APT_CMD const Binary, Configuration * const * const Cnf, pkgSystem ** const Sys, int const argc, const char * argv[]); -APT_PUBLIC unsigned short DispatchCommandLine(CommandLine &CmdL, std::vector<CommandLine::DispatchWithHelp> const &Cmds); +APT_PUBLIC unsigned short DispatchCommandLine(CommandLine &CmdL, std::vector<CommandLine::Dispatch> const &Cmds); APT_PUBLIC std::vector<CommandLine::Args> getCommandArgs(APT_CMD const Program, char const * const Cmd); |