Scribus Epub Export Plugin
epubexportImage.h
1 // Prepare the image for for the epub Exporting
2 #ifndef EPUBEXPORTIMAGE_H
3 #define EPUBEXPORTIMAGE_H
4 
5 #include <QDebug>
6 
7 #include <QObject>
8 
12 class EpubExportImage : public QObject
13 {
14  Q_OBJECT
15 
16 public:
18  ~EpubExportImage();
19 };
20 
21 QDebug operator<<(QDebug dbg, const EpubExportImage &image);
22 
23 #endif //EPUBEXPORTIMAGE_H
Prepare the image for for the epub Exporting. Not used yet.
Definition: epubexportImage.h:12