blob: c42dfd398d80655534d699e6bd3688868fe48563 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// -*- 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 WriteUniverse(pkgDepCache &Cache, FILE* output);
bool static WriteRequest(pkgDepCache &Cache, FILE* output);
bool static WriteSolution(pkgDepCache &Cache, FILE* output);
};
/*}}}*/
#endif
|