-
- debSrcRecordParser(FileFd *File) : Parser(File),
- Tags(*File,sizeof(Buffer)) {};
+ virtual string AsStr()
+ {
+ const char *Start=0,*Stop=0;
+ Sect.GetSection(Start,Stop);
+ return string(Start,Stop);
+ };
+ virtual bool Files(vector<pkgSrcRecords::File> &F);
+
+ debSrcRecordParser(string File,pkgIndexFile const *Index) :
+ Parser(Index),
+ Fd(File,FileFd::ReadOnly),
+ Tags(&Fd,102400) {};