summaryrefslogtreecommitdiff
path: root/apt-pkg/edsp/edspwriter.h
diff options
context:
space:
mode:
authorDavid Kalnischkies <kalnischkies@gmail.com>2011-03-31 15:10:13 +0200
committerDavid Kalnischkies <kalnischkies@gmail.com>2011-03-31 15:10:13 +0200
commitc3b851268e6e900be2bf0bd715435db9010fd591 (patch)
tree029c45c6faffa0de55923fda83f943be3b8f16c6 /apt-pkg/edsp/edspwriter.h
parent29099cb6855af2e465d26e888160e4f97bda4f0b (diff)
rename edspwriter to straight edsp in toplevel as it does more than
just writing stuff… it also reads and can work for both: - APT talking to an external solver - an external solver (understanding EDSP) talking to APT
Diffstat (limited to 'apt-pkg/edsp/edspwriter.h')
-rw-r--r--apt-pkg/edsp/edspwriter.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/apt-pkg/edsp/edspwriter.h b/apt-pkg/edsp/edspwriter.h
deleted file mode 100644
index c5eed788f..000000000
--- a/apt-pkg/edsp/edspwriter.h
+++ /dev/null
@@ -1,32 +0,0 @@
-// -*- 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>
-
-#include <string>
-
-class edspWriter /*{{{*/
-{
-public:
- bool static WriteRequest(pkgDepCache &Cache, FILE* output);
- bool static WriteScenario(pkgDepCache &Cache, FILE* output);
- bool static ReadResponse(FILE* input, pkgDepCache &Cache);
-
- // ReadScenario is provided by the listparser infrastructure
- bool static ReadRequest(FILE* input, std::list<std::string> &install,
- std::list<std::string> &remove);
- bool static ApplyRequest(std::list<std::string> const &install,
- std::list<std::string> const &remove,
- pkgDepCache &Cache);
- bool static WriteSolution(pkgDepCache &Cache, FILE* output);
- bool static WriteError(std::string const &message, FILE* output);
-
-};
- /*}}}*/
-#endif