NEURON
epsprint.h
Go to the documentation of this file.
1 #ifndef epsprinter_h
2 #define epsprinter_h
3 
4 #ifdef CYGWIN
5 #ifndef WIN32
6 #define WIN32 1
7 #endif
8 #endif
9 
10 #include <InterViews/printer.h>
11 
12 class EPSPrinter : public Printer {
13 public:
14  EPSPrinter(ostream*);
15  virtual ~EPSPrinter();
16 
17  virtual void eps_prolog(ostream&, Coord width, Coord height,
18  const char* creator = "InterViews");
19 };
20 
21 #endif
virtual void eps_prolog(ostream &, Coord width, Coord height, const char *creator="InterViews")
#define Coord
Definition: _defines.h:19
#define Printer
Definition: _defines.h:211
virtual ~EPSPrinter()
EPSPrinter(ostream *)