]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/pkgrecords.h
* add --dsc-only option, thanks to K. Richard Pixley
[apt.git] / apt-pkg / pkgrecords.h
index 31c444dbf9c82becf1cdde4fbf94be5eea74d890..dcfec07ef6c636bf73a84050c8b770bf5eb82d8d 100644 (file)
@@ -38,7 +38,6 @@ class pkgRecords
 
    // Lookup function
    Parser &Lookup(pkgCache::VerFileIterator const &Ver);
-   Parser &Lookup(pkgCache::DescFileIterator const &Desc);
 
    // Construct destruct
    pkgRecords(pkgCache &Cache);
@@ -50,7 +49,6 @@ class pkgRecords::Parser
    protected:
    
    virtual bool Jump(pkgCache::VerFileIterator const &Ver) = 0;
-   virtual bool Jump(pkgCache::DescFileIterator const &Desc) = 0;
    
    public:
    friend class pkgRecords;
@@ -60,6 +58,7 @@ class pkgRecords::Parser
    virtual string MD5Hash() {return string();};
    virtual string SHA1Hash() {return string();};
    virtual string SourcePkg() {return string();};
+   virtual string SourceVer() {return string();};
 
    // These are some general stats about the package
    virtual string Maintainer() {return string();};