X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/74b220028595342028e3309002e4ec359af328f9..41a658f873a36e2f8507a84fb40f0632e2a62b15:/ftparchive/contents.h diff --git a/ftparchive/contents.h b/ftparchive/contents.h index f549ce17f..dbbb83350 100644 --- a/ftparchive/contents.h +++ b/ftparchive/contents.h @@ -9,12 +9,15 @@ /*}}}*/ #ifndef CONTENTS_H #define CONTENTS_H - -#include -#include -#include + #include +#include +#include +#include + +class debDebFile; + class GenContents { struct Node @@ -80,7 +83,7 @@ class ContentsExtract : public pkgDirStream virtual bool DoItem(Item &Itm,int &Fd); void Reset() {CurSize = 0;}; bool TakeContents(const void *Data,unsigned long long Length); - void Add(GenContents &Contents,string const &Package); + void Add(GenContents &Contents,std::string const &Package); ContentsExtract() : Data(0), MaxSize(0), CurSize(0) {}; virtual ~ContentsExtract() {delete [] Data;};