|
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/debindexfile.h> 00012 00013 class edspIndex : public debStatusIndex 00014 { 00016 void *d; 00017 00018 public: 00019 00020 virtual const Type *GetType() const; 00021 00022 virtual bool Merge(pkgCacheGenerator &Gen,OpProgress *Prog) const; 00023 00024 edspIndex(std::string File); 00025 }; 00026 00027 #endif
1.7.4