]>
Commit | Line | Data |
---|---|---|
6d38011b DK |
1 | // -*- mode: cpp; mode: fold -*- |
2 | // Description /*{{{*/ | |
3 | /* ###################################################################### | |
e0a78caa | 4 | The scenario file is designed to work as an intermediate file between |
6d38011b DK |
5 | APT and the resolver. Its on propose very similar to a dpkg status file |
6 | ##################################################################### */ | |
7 | /*}}}*/ | |
8 | #ifndef PKGLIB_EDSPINDEXFILE_H | |
9 | #define PKGLIB_EDSPINDEXFILE_H | |
10 | ||
6d38011b DK |
11 | #include <apt-pkg/debindexfile.h> |
12 | ||
13 | class edspIndex : public debStatusIndex | |
14 | { | |
627e99b0 MV |
15 | /** \brief dpointer placeholder (for later in case we need it) */ |
16 | void *d; | |
17 | ||
6d38011b DK |
18 | public: |
19 | ||
20 | virtual const Type *GetType() const; | |
21 | ||
22 | virtual bool Merge(pkgCacheGenerator &Gen,OpProgress *Prog) const; | |
23 | ||
8f3ba4e8 | 24 | edspIndex(std::string File); |
6d38011b DK |
25 | }; |
26 | ||
27 | #endif |