blob: 2b417956ed460c398c2034b1593c13d46bddb6fc (
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 WriteScenario(pkgDepCache &Cache, FILE* output);
bool static WriteRequest(pkgDepCache &Cache, FILE* output);
bool static WriteSolution(pkgDepCache &Cache, FILE* output);
};
/*}}}*/
#endif
|