X-Git-Url: https://git.hcoop.net/ntk/apt.git/blobdiff_plain/484dbb814fd2b787b2206ffe9504798dfd73ae6c..HEAD:/apt-pkg/vendorlist.h diff --git a/apt-pkg/vendorlist.h b/apt-pkg/vendorlist.h index ff2f4ed5..bc3702a9 100644 --- a/apt-pkg/vendorlist.h +++ b/apt-pkg/vendorlist.h @@ -15,25 +15,30 @@ #include #include +#include + +#ifndef APT_8_CLEANER_HEADERS #include #include - using std::string; using std::vector; +#endif +class Vendor; +class Configuration; -class pkgVendorList +class APT_DEPRECATED pkgVendorList { protected: - vector VendorList; + std::vector VendorList; bool CreateList(Configuration& Cnf); - const Vendor* LookupFingerprint(string Fingerprint); + const Vendor* LookupFingerprint(std::string Fingerprint); public: - typedef vector::const_iterator const_iterator; + typedef std::vector::const_iterator const_iterator; bool ReadMainList(); - bool Read(string File); + bool Read(std::string File); // List accessors inline const_iterator begin() const {return VendorList.begin();}; @@ -41,7 +46,7 @@ class pkgVendorList inline unsigned int size() const {return VendorList.size();}; inline bool empty() const {return VendorList.empty();}; - const Vendor* FindVendor(const vector GPGVOutput); + const Vendor* FindVendor(const std::vector GPGVOutput); ~pkgVendorList(); };