]> git.saurik.com Git - apt.git/blobdiff - apt-inst/deb/debfile.h
merged from lp:~donkult/apt/experimental
[apt.git] / apt-inst / deb / debfile.h
index 6b9f8ffc84772a23c6d4276119a8904b36433626..5e1ea1d2f3e505f90ed801c327ad3a9f9b75413a 100644 (file)
 
 
 #include <apt-pkg/arfile.h>
 
 
 #include <apt-pkg/arfile.h>
-#include <apt-pkg/database.h>
 #include <apt-pkg/dirstream.h>
 #include <apt-pkg/tagfile.h>
 #include <apt-pkg/dirstream.h>
 #include <apt-pkg/tagfile.h>
+#include <apt-pkg/pkgcache.h>
+
+#ifndef APT_8_CLEANER_HEADERS
+#include <apt-pkg/database.h>
+#endif
+
+class FileFd;
+class pkgDataBase;
 
 class debDebFile
 {
 
 class debDebFile
 {
@@ -68,7 +75,7 @@ class debDebFile::MemControlExtract : public pkgDirStream
    char *Control;
    pkgTagSection Section;
    unsigned long Length;
    char *Control;
    pkgTagSection Section;
    unsigned long Length;
-   string Member;
+   std::string Member;
    
    // Members from DirStream
    virtual bool DoItem(Item &Itm,int &Fd);
    
    // Members from DirStream
    virtual bool DoItem(Item &Itm,int &Fd);
@@ -81,7 +88,7 @@ class debDebFile::MemControlExtract : public pkgDirStream
    bool TakeControl(const void *Data,unsigned long Size);
       
    MemControlExtract() : IsControl(false), Control(0), Length(0), Member("control") {};
    bool TakeControl(const void *Data,unsigned long Size);
       
    MemControlExtract() : IsControl(false), Control(0), Length(0), Member("control") {};
-   MemControlExtract(string Member) : IsControl(false), Control(0), Length(0), Member(Member) {};
+   MemControlExtract(std::string Member) : IsControl(false), Control(0), Length(0), Member(Member) {};
    ~MemControlExtract() {delete [] Control;};   
 };
                                                                        /*}}}*/
    ~MemControlExtract() {delete [] Control;};   
 };
                                                                        /*}}}*/