epsprint.h
Go to the documentation of this file.00001 #ifndef epsprinter_h
00002 #define epsprinter_h
00003
00004 #ifdef CYGWIN
00005 #ifndef WIN32
00006 #define WIN32 1
00007 #endif
00008 #endif
00009
00010 #include <InterViews/printer.h>
00011
00012 class EPSPrinter : public Printer {
00013 public:
00014 EPSPrinter(ostream*);
00015 virtual ~EPSPrinter();
00016
00017 virtual void eps_prolog(ostream&, Coord width, Coord height,
00018 const char* creator = "InterViews");
00019 };
00020
00021 #endif