VTK
vtkGESignaReader.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkGESignaReader.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
34 #ifndef vtkGESignaReader_h
35 #define vtkGESignaReader_h
36 
37 #include "vtkIOImageModule.h" // For export macro
38 #include "vtkMedicalImageReader2.h"
39 
41 {
42 public:
43  static vtkGESignaReader *New();
45  virtual void PrintSelf(ostream& os, vtkIndent indent);
46 
48  virtual int CanReadFile(const char* fname);
49 
51 
52  virtual const char* GetFileExtensions()
53  {
54  return ".MR .CT";
55  }
57 
59 
60  virtual const char* GetDescriptiveName()
61  {
62  return "GESigna";
63  }
65 
66 protected:
69 
70  virtual void ExecuteInformation();
71  virtual void ExecuteDataWithInformation(vtkDataObject *out, vtkInformation* outInfo);
72 
73 private:
74  vtkGESignaReader(const vtkGESignaReader&); // Not implemented.
75  void operator=(const vtkGESignaReader&); // Not implemented.
76 };
77 #endif
78 
79 
virtual const char * GetFileExtensions()
Store vtkAlgorithm input/output information.
void PrintSelf(ostream &os, vtkIndent indent)
read GE Signa ximg files
static vtkMedicalImageReader2 * New()
virtual int CanReadFile(const char *vtkNotUsed(fname))
a simple class to control print indentation
Definition: vtkIndent.h:38
virtual void ExecuteInformation()
virtual const char * GetDescriptiveName()
vtkImageReader2 with medical meta data.
#define VTKIOIMAGE_EXPORT
virtual void ExecuteDataWithInformation(vtkDataObject *data, vtkInformation *outInfo)
general representation of visualization data
Definition: vtkDataObject.h:64