00001 #ifndef POSTSCRIPT_H
00002 #define POSTSCRIPT_H
00003
00004 #include <faith/paintdevice.h>
00005
00006 namespace Faith
00007 {
00008
00009 class FAITH_CORE_EXPORT PostScriptDevice : public Faith::PaintDevice
00010 {
00011 struct PostScriptDevicePrivate;
00012 PostScriptDevicePrivate *d;
00013
00014 public:
00015 PostScriptDevice(const String &file);
00016 ~PostScriptDevice();
00017
00018 virtual Internal::Drawable *getDrawable();
00019
00020 Handle handle();
00021 };
00022
00023
00024 };
00025
00026 #endif