]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/indexrecords.h
* apt-pkg/contrib/cmdline.cc:
[apt.git] / apt-pkg / indexrecords.h
index 414faceaa8ebc2e6ad344647b8cfaf2c2da0f555..2e3103b70f2ab269831ca0a9083513453ab9efb3 100644 (file)
@@ -5,11 +5,10 @@
 #ifndef PKGLIB_INDEXRECORDS_H
 #define PKGLIB_INDEXRECORDS_H
 
-#ifdef __GNUG__
-#pragma interface "apt-pkg/indexrecords.h"
-#endif 
+
 #include <apt-pkg/pkgcache.h>
 #include <apt-pkg/fileutl.h>
+#include <apt-pkg/hashes.h>
 
 #include <map>
 #include <vector>
@@ -35,6 +34,8 @@ class indexRecords
 
    // 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);
@@ -47,7 +48,7 @@ class indexRecords
 struct indexRecords::checkSum
 {
    string MetaKeyFilename;
-   string MD5Hash;
+   HashString Hash;
    size_t Size;      
 };