some more win32'fication to fix non-ascii filename handling
[kdelibs.git] / kimgio / eps.h
blob75668a4c4ae21b1c45ff7a1250144ac4052c32e1
1 /**
2 * QImageIO Routines to read/write EPS images.
3 * copyright (c) 1998 Dirk Schoenberger <dirk.schoenberger@freenet.de>
5 * This library is distributed under the conditions of the GNU LGPL.
6 */
7 #ifndef _EPS_H
8 #define _EPS_H
11 #include <QtGui/QImageIOPlugin>
13 class EPSHandler : public QImageIOHandler
15 public:
16 EPSHandler();
18 bool canRead() const;
19 bool read(QImage *image);
20 bool write(const QImage &image);
22 QByteArray name() const;
24 static bool canRead(QIODevice *device);
27 #endif