blob: 1e26c8cfa6d19087c7271e78388fef87c64e079f (
plain)
1
2
3
4
5
6
7
8
9
10
|
#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..
};
|