]> git.saurik.com Git - apt.git/blame - apt-pkg/edsp/edspwriter.h
strip the Dir::state from the config name as it will never be there
[apt.git] / apt-pkg / edsp / edspwriter.h
CommitLineData
6d38011b
DK
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
12class edspWriter /*{{{*/
13{
14public:
e0a78caa 15 bool static WriteScenario(pkgDepCache &Cache, FILE* output);
6d38011b 16 bool static WriteRequest(pkgDepCache &Cache, FILE* output);
e3674d91 17 bool static WriteSolution(pkgDepCache &Cache, FILE* output);
6d38011b
DK
18};
19 /*}}}*/
20#endif