]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/deb/debrecords.h
apt-pkg/deb/*: add placeholder dpointer and make destructors virtual
[apt.git] / apt-pkg / deb / debrecords.h
index ab244b6dda2ed018d7b1ad7512cdb1ccc1469a9b..bbcb5640d3cb16c86f362612c44a475e27b30f7c 100644 (file)
@@ -20,6 +20,9 @@
 
 class debRecordParser : public pkgRecords::Parser
 {
 
 class debRecordParser : public pkgRecords::Parser
 {
+   /** \brief dpointer placeholder (for later in case we need it) */
+   void *d;
+
    FileFd File;
    pkgTagFile Tags;
    pkgTagSection Section;
    FileFd File;
    pkgTagFile Tags;
    pkgTagSection Section;
@@ -44,10 +47,12 @@ class debRecordParser : public pkgRecords::Parser
    virtual string ShortDesc();
    virtual string LongDesc();
    virtual string Name();
    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 void GetRec(const char *&Start,const char *&Stop);
    
    debRecordParser(string FileName,pkgCache &Cache);
+   virtual ~debRecordParser() {};
 };
 
 #endif
 };
 
 #endif