edspwriter.h 645 B

123456789101112131415161718192021
  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. #include <apt-pkg/depcache.h>
  10. class edspWriter /*{{{*/
  11. {
  12. public:
  13. bool static WriteScenario(pkgDepCache &Cache, FILE* output);
  14. bool static WriteRequest(pkgDepCache &Cache, FILE* output);
  15. bool static WriteSolution(pkgDepCache &Cache, FILE* output);
  16. };
  17. /*}}}*/
  18. #endif