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 "vtkMedicalImageReader2.h"
38 
40 {
41 public:
42  static vtkGESignaReader *New();
44  virtual void PrintSelf(ostream& os, vtkIndent indent);
45 
47  virtual int CanReadFile(const char* fname);
48 
50 
51  virtual const char* GetFileExtensions()
52  {
53  return ".MR .CT";
54  }
56 
58 
59  virtual const char* GetDescriptiveName()
60  {
61  return "GESigna";
62  }
64 
65 protected:
68 
69  virtual void ExecuteInformation();
70  virtual void ExecuteData(vtkDataObject *out);
71 
72 private:
73  vtkGESignaReader(const vtkGESignaReader&); // Not implemented.
74  void operator=(const vtkGESignaReader&); // Not implemented.
75 };
76 #endif
77 
78