From c187e828e1661d09a8437214b2f90dcc25c05c99 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 18 Nov 2005 01:01:37 +0000 Subject: * basic pkgAcquire + pkgPackageManager support added --- python/pkgrecords.h | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 python/pkgrecords.h (limited to 'python/pkgrecords.h') diff --git a/python/pkgrecords.h b/python/pkgrecords.h new file mode 100644 index 00000000..78787eab --- /dev/null +++ b/python/pkgrecords.h @@ -0,0 +1,10 @@ +#include + +struct PkgRecordsStruct +{ + pkgRecords Records; + pkgRecords::Parser *Last; + + PkgRecordsStruct(pkgCache *Cache) : Records(*Cache), Last(0) {}; + PkgRecordsStruct() : Records(*(pkgCache *)0) {abort();}; // G++ Bug.. +}; -- cgit v1.2.3