astra / python /pkgrecords.h
Lorenzob's picture
Upload folder using huggingface_hub
859a779 verified
raw
history blame
257 Bytes
#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..
};