VTK
vtkMedicalImageReader2.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkMedicalImageReader2.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 =========================================================================*/
25 #ifndef __vtkMedicalImageReader2_h
26 #define __vtkMedicalImageReader2_h
27 
28 #include "vtkImageReader2.h"
29 
31 
33 {
34 public:
35  static vtkMedicalImageReader2 *New();
37  void PrintSelf(ostream& os, vtkIndent indent);
38 
40 
41  vtkGetObjectMacro(MedicalImageProperties, vtkMedicalImageProperties);
43 
45 
47  virtual void SetPatientName(const char*);
48  virtual const char* GetPatientName();
49  virtual void SetPatientID(const char*);
50  virtual const char* GetPatientID();
51  virtual void SetDate(const char*);
52  virtual const char* GetDate();
53  virtual void SetSeries(const char*);
54  virtual const char* GetSeries();
55  virtual void SetStudy(const char*);
56  virtual const char* GetStudy();
57  virtual void SetImageNumber(const char*);
58  virtual const char* GetImageNumber();
59  virtual void SetModality(const char*);
60  virtual const char* GetModality();
62 
63 protected:
66 
69 
70 private:
71  vtkMedicalImageReader2(const vtkMedicalImageReader2&); // Not implemented.
72  void operator=(const vtkMedicalImageReader2&); // Not implemented.
73 };
74 
75 #endif