]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/deb/debrecords.h
move implementation of checksums around by abstracting even more
[apt.git] / apt-pkg / deb / debrecords.h
index 05159ea1eaae1caa78d6a015d382dc410863c5b4..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;
@@ -50,6 +53,7 @@ class debRecordParser : public pkgRecords::Parser
    virtual void GetRec(const char *&Start,const char *&Stop);
    
    debRecordParser(string FileName,pkgCache &Cache);
+   virtual ~debRecordParser() {};
 };
 
 #endif