apt @VERSION@
|
00001 // -*- mode: cpp; mode: fold -*- 00002 // Description /*{{{*/ 00003 /* ###################################################################### 00004 The scenario file is designed to work as an intermediate file between 00005 APT and the resolver. Its on propose very similar to a dpkg status file 00006 ##################################################################### */ 00007 /*}}}*/ 00008 #ifndef PKGLIB_EDSPINDEXFILE_H 00009 #define PKGLIB_EDSPINDEXFILE_H 00010 00011 #include <apt-pkg/indexfile.h> 00012 #include <apt-pkg/debindexfile.h> 00013 00014 class edspIndex : public debStatusIndex 00015 { 00017 void *d; 00018 00019 public: 00020 00021 virtual const Type *GetType() const; 00022 00023 virtual bool Merge(pkgCacheGenerator &Gen,OpProgress *Prog) const; 00024 00025 edspIndex(string File); 00026 }; 00027 00028 #endif