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_IMAGEWRITERMGR_H
00021 #define SVTK_IMAGEWRITERMGR_H
00022
00023 #include <string>
00024 #include <vector>
00025
00026 class QString;
00027 class vtkImageData;
00028 class SVTK_ImageWriter;
00029 class QSemaphore;
00030
00031 class SVTK_ImageWriterMgr
00032 {
00033 public:
00034 SVTK_ImageWriterMgr();
00035 ~SVTK_ImageWriterMgr();
00036
00037 void
00038 StartImageWriter(vtkImageData *theImageData,
00039 const std::string& theName,
00040 const int theProgressive,
00041 const int theQuality);
00042
00043 void
00044 Stop();
00045
00046 typedef std::vector<SVTK_ImageWriter*> TWriterThreads;
00047
00048 protected:
00049 TWriterThreads myThreads;
00050
00051 QSemaphore* mySemaphore;
00052 };
00053
00054 #endif
00055