]>
Commit | Line | Data |
---|---|---|
da6ee469 JF |
1 | // -*- mode: cpp; mode: fold -*- |
2 | // Description /*{{{*/ | |
3 | // $Id: vendorlist.h,v 1.1.2.1 2003/12/24 23:09:17 mdz Exp $ | |
4 | /* ###################################################################### | |
5 | ||
6 | VendorList - Manage a list of vendors | |
7 | ||
8 | The Vendor List class provides access to a list of vendors and | |
9 | attributes associated with them, read from a configuration file. | |
10 | ||
11 | ##################################################################### */ | |
12 | /*}}}*/ | |
13 | #ifndef PKGLIB_VENDORLIST_H | |
14 | #define PKGLIB_VENDORLIST_H | |
15 | ||
16 | #include <string> | |
17 | #include <vector> | |
18 | #include <apt-pkg/vendor.h> | |
19 | #include <apt-pkg/configuration.h> | |
20 | ||
21 | using std::string; | |
22 | using std::vector; | |
23 | ||
da6ee469 JF |
24 | |
25 | class pkgVendorList | |
26 | { | |
27 | protected: | |
28 | vector<Vendor const *> VendorList; | |
29 | ||
30 | bool CreateList(Configuration& Cnf); | |
31 | const Vendor* LookupFingerprint(string Fingerprint); | |
32 | ||
33 | public: | |
34 | typedef vector<Vendor const *>::const_iterator const_iterator; | |
35 | bool ReadMainList(); | |
36 | bool Read(string File); | |
37 | ||
38 | // List accessors | |
39 | inline const_iterator begin() const {return VendorList.begin();}; | |
40 | inline const_iterator end() const {return VendorList.end();}; | |
41 | inline unsigned int size() const {return VendorList.size();}; | |
42 | inline bool empty() const {return VendorList.empty();}; | |
43 | ||
44 | const Vendor* FindVendor(const vector<string> GPGVOutput); | |
45 | ||
46 | ~pkgVendorList(); | |
47 | }; | |
48 | ||
49 | #endif |