]> git.saurik.com Git - apt.git/blame_incremental - apt-pkg/deb/debsystem.h
merged from the debian-sid branch
[apt.git] / apt-pkg / deb / debsystem.h
... / ...
CommitLineData
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
3// $Id: debsystem.h,v 1.4 2003/01/11 07:16:33 jgg Exp $
4/* ######################################################################
5
6 System - Debian version of the System Class
7
8 ##################################################################### */
9 /*}}}*/
10#ifndef PKGLIB_DEBSYSTEM_H
11#define PKGLIB_DEBSYSTEM_H
12
13#include <apt-pkg/pkgsystem.h>
14
15class debSystemPrivate;
16
17class debStatusIndex;
18class debSystem : public pkgSystem
19{
20 // private d-pointer
21 debSystemPrivate *d;
22 bool CheckUpdates();
23
24 public:
25
26 virtual bool Lock();
27 virtual bool UnLock(bool NoErrors = false);
28 virtual pkgPackageManager *CreatePM(pkgDepCache *Cache) const;
29 virtual bool Initialize(Configuration &Cnf);
30 virtual bool ArchiveSupported(const char *Type);
31 virtual signed Score(Configuration const &Cnf);
32 virtual bool AddStatusFiles(std::vector<pkgIndexFile *> &List);
33 virtual bool FindIndex(pkgCache::PkgFileIterator File,
34 pkgIndexFile *&Found) const;
35
36 debSystem();
37 virtual ~debSystem();
38};
39
40extern debSystem debSys;
41
42#endif