add a first round of stuff needed for talking between APT and solvers
[ntk/apt.git] / apt-pkg / edsp / edspwriter.h
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:
15 bool static WriteUniverse(pkgDepCache &Cache, FILE* output);
16 bool static WriteRequest(pkgDepCache &Cache, FILE* output);
17 };
18 /*}}}*/
19 #endif