KImgIO
xview.h
Go to the documentation of this file.00001 00015 #ifndef XVIEW_H 00016 #define XVIEW_H 00017 00018 00019 #include <QtGui/QImageIOPlugin> 00020 00021 class XVHandler : public QImageIOHandler 00022 { 00023 public: 00024 XVHandler(); 00025 00026 bool canRead() const; 00027 bool read(QImage *image); 00028 bool write(const QImage &image); 00029 00030 QByteArray name() const; 00031 00032 static bool canRead(QIODevice *device); 00033 }; 00034 00035 #endif