| 123456789101112131415161718192021 |
- // -*- mode: cpp; mode: fold -*-
- // Description /*{{{*/
- /* ######################################################################
- Set of methods to help writing and reading everything needed for EDSP
- ##################################################################### */
- /*}}}*/
- #ifndef PKGLIB_EDSPWRITER_H
- #define PKGLIB_EDSPWRITER_H
- #include <apt-pkg/depcache.h>
- class edspWriter /*{{{*/
- {
- public:
- bool static WriteScenario(pkgDepCache &Cache, FILE* output);
- bool static WriteRequest(pkgDepCache &Cache, FILE* output);
- bool static WriteSolution(pkgDepCache &Cache, FILE* output);
- };
- /*}}}*/
- #endif
|