]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/metaindex.h
* apt-pkg/contrib/configuration.cc:
[apt.git] / apt-pkg / metaindex.h
index 779b6ab141e8cc8fdb3faff8f73c6917ff3977e5..f60235a5d161384da4c7c362d27cb812e50850d3 100644 (file)
@@ -33,12 +33,16 @@ class metaIndex
    virtual const char* GetType() const {return Type;}
 
    // Interface for acquire
-   virtual string ArchiveURI(string /*File*/) const = 0;
-   virtual bool GetIndexes(pkgAcquire *Owner, bool GetAll=false) const = 0;
+   virtual string ArchiveURI(string const& /*File*/) const = 0;
+   virtual bool GetIndexes(pkgAcquire *Owner, bool const &GetAll=false) const = 0;
    
    virtual vector<pkgIndexFile *> *GetIndexFiles() = 0; 
    virtual bool IsTrusted() const = 0;
 
+   metaIndex(string const &URI, string const &Dist, char const * const Type) :
+               Indexes(NULL), Type(Type), URI(URI), Dist(Dist) {
+   }
+
    virtual ~metaIndex() {
       if (Indexes == 0)
         return;