File size: 257 Bytes
859a779
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
#include <apt-pkg/pkgrecords.h>

struct PkgRecordsStruct
{
   pkgRecords Records;
   pkgRecords::Parser *Last;

   PkgRecordsStruct(pkgCache *Cache) : Records(*Cache), Last(0) {};
   PkgRecordsStruct() : Records(*(pkgCache *)0) {abort();};  // G++ Bug..
};