blob: 033bb96e8770e561907b1a8237c0280b8de9ed1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#ifndef PKGLIB_VENDOR_H
#define PKGLIB_VENDOR_H
#include <string>
#include <vector>
#include <map>
#ifdef __GNUG__
#pragma interface "apt-pkg/vendor.h"
#endif
using std::string;
// A class representing a particular software provider.
class Vendor
{
public:
struct Fingerprint
{
string Print;
string Description;
};
protected:
string VendorID;
string Origin;
std::map<string, string> Fingerprints;
public:
Vendor(string VendorID, string Origin,
std::vector<struct Fingerprint *> *FingerprintList);
virtual const string& GetVendorID() const { return VendorID; };
virtual const string LookupFingerprint(string Print) const;
virtual bool CheckDist(string Dist);
virtual ~Vendor(){};
};
#endif
|