]> git.saurik.com Git - apt.git/blame - apt-private/private-cmndline.h
install: If package already is the newest version, display version
[apt.git] / apt-private / private-cmndline.h
CommitLineData
b9179170
MV
1#ifndef APT_PRIVATE_CMNDLINE_H
2#define APT_PRIVATE_CMNDLINE_H
3
4#include <apt-pkg/cmndline.h>
63ff4208 5#include <apt-pkg/macros.h>
b9179170
MV
6
7#include <vector>
8
ad7e0941
DK
9class Configuration;
10class pkgSystem;
11
63ff4208 12APT_PUBLIC std::vector<CommandLine::Args> getCommandArgs(char const * const Program, char const * const Cmd);
ad7e0941
DK
13APT_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));
b9179170
MV
16
17#endif