]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/pkgrecords.h
* ABI/API change: add "VerIterator::TranslatedDescription()" method to make the life...
[apt.git] / apt-pkg / pkgrecords.h
index 08f00441463e428da12e6268c9123a5116742f55..ece91680e518e3daf3b86cd912ded17c35bc7128 100644 (file)
@@ -33,11 +33,13 @@ class pkgRecords
    
    pkgCache &Cache;
    Parser **Files;
+   int PackageFileCount;
       
    public:
 
    // Lookup function
    Parser &Lookup(pkgCache::VerFileIterator const &Ver);
+   Parser &Lookup(pkgCache::DescFileIterator const &Desc);
 
    // Construct destruct
    pkgRecords(pkgCache &Cache);
@@ -49,6 +51,7 @@ class pkgRecords::Parser
    protected:
    
    virtual bool Jump(pkgCache::VerFileIterator const &Ver) = 0;
+   virtual bool Jump(pkgCache::DescFileIterator const &Desc) = 0;
    
    public:
    friend class pkgRecords;