1 // -*- mode: cpp; mode: fold -*-
3 // $Id: vendorlist.h,v 1.1.2.1 2003/12/24 23:09:17 mdz Exp $
4 /* ######################################################################
6 VendorList - Manage a list of vendors
8 The Vendor List class provides access to a list of vendors and
9 attributes associated with them, read from a configuration file.
11 ##################################################################### */
13 #ifndef PKGLIB_VENDORLIST_H
14 #define PKGLIB_VENDORLIST_H
18 #include <apt-pkg/vendor.h>
19 #include <apt-pkg/configuration.h>
25 #pragma interface "apt-pkg/vendorlist.h"
31 vector
<Vendor
const *> VendorList
;
33 bool CreateList(Configuration
& Cnf
);
34 const Vendor
* LookupFingerprint(string Fingerprint
);
37 typedef vector
<Vendor
const *>::const_iterator const_iterator
;
39 bool Read(string File
);
42 inline const_iterator
begin() const {return VendorList
.begin();};
43 inline const_iterator
end() const {return VendorList
.end();};
44 inline unsigned int size() const {return VendorList
.size();};
45 inline bool empty() const {return VendorList
.empty();};
47 const Vendor
* FindVendor(const vector
<string
> GPGVOutput
);