1
0
Fork 0
apt/apt-private/private-cmndline.h
Daniel Baumann 6810ba718b
Adding upstream version 3.0.2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-20 21:10:43 +02:00

42 lines
1 KiB
C++

#ifndef APT_PRIVATE_CMNDLINE_H
#define APT_PRIVATE_CMNDLINE_H
#include <apt-pkg/cmndline.h>
#include <apt-pkg/macros.h>
#include <vector>
class Configuration;
class pkgSystem;
enum class APT_CMD {
APT,
APT_GET,
APT_CACHE,
APT_CDROM,
APT_CONFIG,
APT_EXTRACTTEMPLATES,
APT_FTPARCHIVE,
APT_HELPER,
APT_INTERNAL_SOLVER,
APT_MARK,
APT_SORTPKG,
APT_DUMP_SOLVER,
APT_INTERNAL_PLANNER,
RRED,
};
struct aptDispatchWithHelp
{
const char *Match;
bool (*Handler)(CommandLine &);
const char *Help;
};
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[],
bool (*ShowHelp)(CommandLine &), std::vector<aptDispatchWithHelp> (*GetCommands)(void));
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);
#endif