00001
00002
00003
00004
00005
00006
00007 #ifndef EXPORT_IMAGE_FOR_REGRESSION_H
00008 #define EXPORT_IMAGE_FOR_REGRESSION_H
00009
00010 class QPixmap;
00011 class QString;
00012
00015 class ExportImageForRegression
00016 {
00017 public:
00019 ExportImageForRegression(const QPixmap &pixmap);
00020
00022 void fileExport (const QString &filename) const;
00023
00024 private:
00025 ExportImageForRegression();
00026
00027 const int m_width;
00028 const int m_height;
00029 };
00030
00031 #endif // EXPORT_IMAGE_FOR_REGRESSION_H