]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/edsp/edspindexfile.h
make all d-pointer * const pointers
[apt.git] / apt-pkg / edsp / edspindexfile.h
index de10f2d2f7a4ba20a25527b65359c2fc9f0c06db..265a016c52e483b178662ed044c0542f74a75fca 100644 (file)
@@ -9,23 +9,28 @@
 #define PKGLIB_EDSPINDEXFILE_H
 
 #include <apt-pkg/debindexfile.h>
+#include <string>
 
 #ifndef APT_8_CLEANER_HEADERS
 #include <apt-pkg/indexfile.h>
 #endif
 
-class edspIndex : public debStatusIndex
+class OpProgress;
+class pkgCacheGenerator;
+
+class APT_HIDDEN edspIndex : public debStatusIndex
 {
    /** \brief dpointer placeholder (for later in case we need it) */
-   void *d;
+   void * const d;
 
    public:
 
-   virtual const Type *GetType() const;
+   virtual const Type *GetType() const APT_CONST;
 
    virtual bool Merge(pkgCacheGenerator &Gen,OpProgress *Prog) const;
 
    edspIndex(std::string File);
+   virtual ~edspIndex();
 };
 
 #endif