]> Creatis software - clitk.git/blob - vv/vtkVOXImageWriter.h
Debug RTStruct conversion with empty struc
[clitk.git] / vv / vtkVOXImageWriter.h
1 /*=========================================================================
2   Program:   vv                     http://www.creatis.insa-lyon.fr/rio/vv
3
4   Authors belong to: 
5   - University of LYON              http://www.universite-lyon.fr/
6   - Léon Bérard cancer center       http://www.centreleonberard.fr
7   - CREATIS CNRS laboratory         http://www.creatis.insa-lyon.fr
8
9   This software is distributed WITHOUT ANY WARRANTY; without even
10   the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
11   PURPOSE.  See the copyright notices for more information.
12
13   It is distributed under dual licence
14
15   - BSD        See included LICENSE.txt file
16   - CeCILL-B   http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
17 ===========================================================================**/
18 #ifndef __vtkVOXImageWriter_h
19 #define __vtkVOXImageWriter_h
20 #include "vtkImageWriter.h"
21 #include <string>
22
23
24 class vtkVOXImageWriter : public vtkImageWriter
25 {
26 public:
27     vtkTypeMacro(vtkVOXImageWriter,vtkImageWriter);
28     void PrintSelf(ostream& os, vtkIndent indent);
29
30     // Description:
31     static vtkVOXImageWriter *New();
32
33     // Description:
34     // Specify file name of meta file
35     vtkSetStringMacro(FileName);
36
37     // This is called by the superclass.
38     // This is the method you should override.
39     virtual void Write();
40
41 protected:
42     vtkVOXImageWriter();
43     ~vtkVOXImageWriter();
44
45 private:
46     vtkVOXImageWriter(const vtkVOXImageWriter&);  // Not implemented.
47     void operator=(const vtkVOXImageWriter&);  // Not implemented.
48
49
50 };
51
52 #endif