diff options
author | Michael Vogt <mvo@ubuntu.com> | 2014-04-23 13:51:48 +0200 |
---|---|---|
committer | Michael Vogt <mvo@ubuntu.com> | 2014-04-24 07:33:59 +0200 |
commit | a49e7948029d8219d7cb182fbc1b0adb587691b8 (patch) | |
tree | 14dc3c33c2e6578213d2716e0b318089d2271b19 /apt-pkg/pkgsystem.h | |
parent | feab34c5216941ca95aae1a389238a77b662d1de (diff) |
create debIFTypeDscFile type
Diffstat (limited to 'apt-pkg/pkgsystem.h')
-rw-r--r-- | apt-pkg/pkgsystem.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/apt-pkg/pkgsystem.h b/apt-pkg/pkgsystem.h index 6e33c67ed..f88ffa7c8 100644 --- a/apt-pkg/pkgsystem.h +++ b/apt-pkg/pkgsystem.h @@ -85,10 +85,12 @@ class pkgSystem virtual bool AddStatusFiles(std::vector<pkgIndexFile *> &List) = 0; virtual bool FindIndex(pkgCache::PkgFileIterator File, pkgIndexFile *&Found) const = 0; - + /* Evauluate how 'right' we are for this system based on the filesystem etc.. */ - virtual signed Score(Configuration const &/*Cnf*/) {return 0;}; + virtual signed Score(Configuration const &/*Cnf*/) { + return 0; + }; pkgSystem(); virtual ~pkgSystem() {}; |