summaryrefslogtreecommitdiff
path: root/apt-pkg/edsp/edspwriter.h
diff options
context:
space:
mode:
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