chiark / gitweb /
rewrap parameters
[moebius.git] / postscript.hh
1 /*
2  * PostScript output
3  */
4
5 #include <fstream.h>
6
7 #include "output.hh"
8
9 struct PostScriptOutput : Output {
10   PostScriptOutput(ofstream&);
11   ~PostScriptOutput();
12   void drawcell(const Point*, int);
13 private:
14   ofstream& file;
15   void docell(const Onscreen*, int, const char* what);
16   void preamble();
17 };