]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/indexrecords.h
pkgAcqIndex::Done(): If we have an IMS-Hit, also rename the destination file in GzipI...
[apt.git] / apt-pkg / indexrecords.h
index 277280620909a8ef521c3399f50e64b4e302c008..468d2bd0fae6cea66b5030543b3d67452bf05bdc 100644 (file)
@@ -5,13 +5,13 @@
 #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>
 
 class indexRecords
 {
@@ -34,7 +34,8 @@ class indexRecords
 
    // Lookup function
    virtual const checkSum *Lookup(const string MetaKey);
-   
+   std::vector<std::string> MetaKeys();
+
    virtual bool Load(string Filename);
    string GetDist() const;
    virtual bool CheckDist(const string MaybeDist) const;
@@ -45,7 +46,7 @@ class indexRecords
 struct indexRecords::checkSum
 {
    string MetaKeyFilename;
-   string MD5Hash;
+   HashString Hash;
    size_t Size;      
 };