]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/indexrecords.h
* apt-pkg/contrib/cmdline.cc:
[apt.git] / apt-pkg / indexrecords.h
index ac0df470c57378d5ee384babb711d10d463421bd..2e3103b70f2ab269831ca0a9083513453ab9efb3 100644 (file)
@@ -8,6 +8,7 @@
 
 #include <apt-pkg/pkgcache.h>
 #include <apt-pkg/fileutl.h>
 
 #include <apt-pkg/pkgcache.h>
 #include <apt-pkg/fileutl.h>
+#include <apt-pkg/hashes.h>
 
 #include <map>
 #include <vector>
 
 #include <map>
 #include <vector>
@@ -33,6 +34,8 @@ class indexRecords
 
    // Lookup function
    virtual const checkSum *Lookup(const string MetaKey);
 
    // Lookup function
    virtual const checkSum *Lookup(const string MetaKey);
+   /** \brief tests if a checksum for this file is available */
+   bool Exists(string const &MetaKey) const;
    std::vector<std::string> MetaKeys();
 
    virtual bool Load(string Filename);
    std::vector<std::string> MetaKeys();
 
    virtual bool Load(string Filename);
@@ -45,7 +48,7 @@ class indexRecords
 struct indexRecords::checkSum
 {
    string MetaKeyFilename;
 struct indexRecords::checkSum
 {
    string MetaKeyFilename;
-   string MD5Hash;
+   HashString Hash;
    size_t Size;      
 };
 
    size_t Size;      
 };