X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/75a90b93257ea81d42331c03b56bd6589c62e065..26b3ade25dc90ab9288fcdd19af747eb62743013:/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;};