]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/deb/debrecords.h
* [ABI-Break] Implement EDSP in libapt-pkg so that all front-ends which
[apt.git] / apt-pkg / deb / debrecords.h
index ab244b6dda2ed018d7b1ad7512cdb1ccc1469a9b..9692ac94cfaf4ebd1fc5aa63b811c68fa4e87c7f 100644 (file)
@@ -20,6 +20,9 @@
 
 class debRecordParser : public pkgRecords::Parser
 {
+   /** \brief dpointer placeholder (for later in case we need it) */
+   void *d;
+
    FileFd File;
    pkgTagFile Tags;
    pkgTagSection Section;
@@ -36,6 +39,7 @@ class debRecordParser : public pkgRecords::Parser
    virtual string MD5Hash();
    virtual string SHA1Hash();
    virtual string SHA256Hash();
+   virtual string SHA512Hash();
    virtual string SourcePkg();
    virtual string SourceVer();
    
@@ -44,10 +48,12 @@ class debRecordParser : public pkgRecords::Parser
    virtual string ShortDesc();
    virtual string LongDesc();
    virtual string Name();
+   virtual string Homepage();
 
    virtual void GetRec(const char *&Start,const char *&Stop);
    
    debRecordParser(string FileName,pkgCache &Cache);
+   virtual ~debRecordParser() {};
 };
 
 #endif