]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/edsp/edspindexfile.h
close server if parsing of header field failed
[apt.git] / apt-pkg / edsp / edspindexfile.h
index edf7990237edf2a40d2cdf19c599365ba125d46a..26bd1232b7d8a575b5ba1e0d221d4164225798d4 100644 (file)
 class OpProgress;
 class pkgCacheGenerator;
 
-class APT_HIDDEN edspIndex : public pkgDebianIndexRealFile
+class APT_HIDDEN edspLikeIndex : public pkgDebianIndexRealFile
 {
-   /** \brief dpointer placeholder (for later in case we need it) */
-   void * const d;
-
 protected:
-   APT_HIDDEN virtual pkgCacheListParser * CreateListParser(FileFd &Pkg) APT_OVERRIDE;
    virtual bool OpenListFile(FileFd &Pkg, std::string const &File) APT_OVERRIDE;
    virtual uint8_t GetIndexFlags() const APT_OVERRIDE;
-   virtual std::string GetComponent() const APT_OVERRIDE;
    virtual std::string GetArchitecture() const APT_OVERRIDE;
-public:
 
-   virtual const Type *GetType() const APT_CONST;
+public:
    virtual bool Exists() const APT_OVERRIDE;
    virtual bool HasPackages() const APT_OVERRIDE;
 
+   edspLikeIndex(std::string const &File);
+   virtual ~edspLikeIndex();
+};
+
+class APT_HIDDEN edspIndex : public edspLikeIndex
+{
+protected:
+   APT_HIDDEN virtual pkgCacheListParser * CreateListParser(FileFd &Pkg) APT_OVERRIDE;
+   virtual std::string GetComponent() const APT_OVERRIDE;
+
+public:
+   virtual const Type *GetType() const APT_OVERRIDE APT_CONST;
+
    edspIndex(std::string const &File);
    virtual ~edspIndex();
 };