]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/sourcelist.h
make all d-pointer * const pointers
[apt.git] / apt-pkg / sourcelist.h
index 9983575092f25d4fbb337104b28c028464b680b3..e17ad6a9a67ccba035c15061e138afcfd244e0bf 100644 (file)
@@ -1,6 +1,5 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: sourcelist.h,v 1.12.2.1 2003/12/24 23:09:17 mdz Exp $
 /* ######################################################################
 
    SourceList - Manage a list of sources
@@ -54,6 +53,7 @@ class metaIndex;
 
 class pkgSourceList
 {
+   void * const d;
    public:
 
    // List of supported source list types
@@ -117,8 +117,8 @@ class pkgSourceList
    time_t GetLastModifiedTime();
 
    pkgSourceList();
-   pkgSourceList(std::string File);
-   ~pkgSourceList();      
+   explicit pkgSourceList(std::string File);
+   virtual ~pkgSourceList();
 };
 
 #endif