]>
Commit | Line | Data |
---|---|---|
6d38011b DK |
1 | // -*- mode: cpp; mode: fold -*- |
2 | // Description /*{{{*/ | |
3 | /* ###################################################################### | |
4 | Set of methods to help writing and reading everything needed for EDSP | |
5 | ##################################################################### */ | |
6 | /*}}}*/ | |
7 | #ifndef PKGLIB_EDSPWRITER_H | |
8 | #define PKGLIB_EDSPWRITER_H | |
9 | ||
10 | #include <apt-pkg/depcache.h> | |
11 | ||
12 | class edspWriter /*{{{*/ | |
13 | { | |
14 | public: | |
e0a78caa | 15 | bool static WriteScenario(pkgDepCache &Cache, FILE* output); |
6d38011b | 16 | bool static WriteRequest(pkgDepCache &Cache, FILE* output); |
e3674d91 | 17 | bool static WriteSolution(pkgDepCache &Cache, FILE* output); |
6d38011b DK |
18 | }; |
19 | /*}}}*/ | |
20 | #endif |