summaryrefslogtreecommitdiff
path: root/apt-pkg/vendor.h
blob: df229737a1c58f2aa3329828a9fb23df39f27853 (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
#ifndef PKGLIB_VENDOR_H
#define PKGLIB_VENDOR_H
#include <string>
#include <vector>
#include <map>

#include <apt-pkg/macros.h>

using std::string;

// A class representing a particular software provider. 
class __deprecated 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