]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/sourcelist.h
make http size check work
[apt.git] / apt-pkg / sourcelist.h
index 4943dd32acb93f50ca075f3de6fd184b745a22b9..35b786e1a1556b57d646cf9d3316e9e1279250b6 100644 (file)
@@ -52,7 +52,15 @@ class pkgAcquire;
 class pkgIndexFile;
 class metaIndex;
 
-class pkgSourceList
+class pkgSource
+{
+   protected:
+
+   std::vector<metaIndex *> SrcList;
+
+};
+
+class pkgSourceList : public pkgSource
 {
    public:
    
@@ -86,15 +94,11 @@ class pkgSourceList
    
    typedef std::vector<metaIndex *>::const_iterator const_iterator;
    
-   protected:
-
-   std::vector<metaIndex *> SrcList;
+   public:
 
    int ParseFileDeb822(std::string File);
    bool ParseFileOldStyle(std::string File);
 
-   public:
-
    bool ReadMainList();
    bool Read(std::string File);
 
@@ -116,11 +120,6 @@ class pkgSourceList
    // query last-modified time
    time_t GetLastModifiedTime();
 
-   // Add custom metaIndex (e.g. local files)
-   void Add(metaIndex *mi) {
-      SrcList.push_back(mi);
-   }
-
    pkgSourceList();
    pkgSourceList(std::string File);
    ~pkgSourceList();