Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef SVTK_IMAGEWRITER_H
00021 #define SVTK_IMAGEWRITER_H
00022
00023 #include <QThread>
00024 #include <string>
00025
00026 class vtkImageData;
00027 class QSemaphore;
00028
00029 class SVTK_ImageWriter : public QThread
00030 {
00031 public:
00032 SVTK_ImageWriter(QSemaphore* theSemaphore,
00033 vtkImageData* theImageData,
00034 const std::string& theName,
00035 int theProgressive,
00036 int theQuality);
00037
00038 ~SVTK_ImageWriter();
00039
00040 protected:
00041 virtual
00042 void
00043 run();
00044
00045 protected:
00046 QSemaphore* mySemaphore;
00047 vtkImageData *myImageData;
00048 std::string myName;
00049 int myProgressive;
00050 int myQuality;
00051 bool myConstraint16Flag;
00052 };
00053
00054 #endif