]>
git.saurik.com Git - apt.git/blob - apt-pkg/deb/dpkgpm.h
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: dpkgpm.h,v 1.6 1999/07/30 06:15:14 jgg Exp $
4 /* ######################################################################
6 DPKG Package Manager - Provide an interface to dpkg
8 ##################################################################### */
10 #ifndef PKGLIB_DPKGPM_H
11 #define PKGLIB_DPKGPM_H
14 #pragma interface "apt-pkg/dpkgpm.h"
17 #include <apt-pkg/packagemanager.h>
20 class pkgDPkgPM
: public pkgPackageManager
26 enum Ops
{Install
, Configure
, Remove
, Purge
} Op
;
29 Item(Ops Op
,PkgIterator Pkg
,string File
= "") : Op(Op
),
30 File(File
), Pkg(Pkg
) {};
37 bool RunScripts(const char *Cnf
);
38 bool RunScriptsWithPkgs(const char *Cnf
);
40 // The Actuall installation implementation
41 virtual bool Install(PkgIterator Pkg
,string File
);
42 virtual bool Configure(PkgIterator Pkg
);
43 virtual bool Remove(PkgIterator Pkg
,bool Purge
= false);
49 pkgDPkgPM(pkgDepCache
&Cache
);