]> 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 6f358abfa3225b5a2034fbb88ea1de20a63a689d..bbcb5640d3cb16c86f362612c44a475e27b30f7c 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;
@@ -49,6 +52,7 @@ class debRecordParser : public pkgRecords::Parser
    virtual void GetRec(const char *&Start,const char *&Stop);
    
    debRecordParser(string FileName,pkgCache &Cache);
+   virtual ~debRecordParser() {};
 };
 
 #endif