#ifndef PKGLIB_METAINDEX_H #define PKGLIB_METAINDEX_H #include #include #include #include #include #include using std::string; class pkgAcquire; class pkgCacheGenerator; class OpProgress; class metaIndex { protected: vector *Indexes; const char *Type; string URI; string Dist; bool Trusted; public: // Various accessors virtual string GetURI() const {return URI;} virtual string GetDist() const {return Dist;} virtual const char* GetType() const {return Type;} // Interface for acquire virtual string ArchiveURI(string const& /*File*/) const = 0; virtual bool GetIndexes(pkgAcquire *Owner, bool const &GetAll=false) const = 0; virtual vector *GetIndexFiles() = 0; virtual bool IsTrusted() const = 0; virtual ~metaIndex() { if (Indexes == 0) return; for (vector::iterator I = (*Indexes).begin(); I != (*Indexes).end(); ++I) delete *I; delete Indexes; } }; #endif