]>
Commit | Line | Data |
---|---|---|
1 | #ifndef APT_PRIVATE_CMNDLINE_H | |
2 | #define APT_PRIVATE_CMNDLINE_H | |
3 | ||
4 | #include <apt-pkg/cmndline.h> | |
5 | #include <apt-pkg/macros.h> | |
6 | ||
7 | #include <vector> | |
8 | ||
9 | class Configuration; | |
10 | class pkgSystem; | |
11 | ||
12 | APT_PUBLIC std::vector<CommandLine::Args> getCommandArgs(char const * const Program, char const * const Cmd); | |
13 | APT_PUBLIC void ParseCommandLine(CommandLine &CmdL, CommandLine::Dispatch * const Cmds, CommandLine::Args * const Args, | |
14 | Configuration * const * const Cnf, pkgSystem ** const Sys, int const argc, const char * argv[], | |
15 | bool(*ShowHelp)(CommandLine &CmdL)); | |
16 | ||
17 | #endif |