Main Page | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | File Members | Related Pages

dox/IO/vtkImageReader2Factory.h

Go to the documentation of this file.
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: $RCSfile: vtkImageReader2Factory.h,v $ 00005 00006 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen 00007 All rights reserved. 00008 See Copyright.txt or http://www.kitware.com/Copyright.htm for details. 00009 00010 This software is distributed WITHOUT ANY WARRANTY; without even 00011 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00012 PURPOSE. See the above copyright notice for more information. 00013 00014 =========================================================================*/ 00040 #ifndef __vtkImageReader2Factory_h 00041 #define __vtkImageReader2Factory_h 00042 00043 00044 #include "vtkObject.h" 00045 class vtkImageReader2Collection; 00046 class vtkImageReader2; 00047 00048 class VTK_IO_EXPORT vtkImageReader2Factory : public vtkObject 00049 { 00050 public: 00051 static vtkImageReader2Factory *New(); 00052 vtkTypeRevisionMacro(vtkImageReader2Factory,vtkObject); 00053 void PrintSelf(ostream& os, vtkIndent indent); 00054 00057 static void RegisterReader(vtkImageReader2* r); 00058 00061 static vtkImageReader2* CreateImageReader2(const char* path); 00062 00065 static void GetRegisteredReaders(vtkImageReader2Collection* ); 00066 protected: 00067 vtkImageReader2Factory(); 00068 ~vtkImageReader2Factory(); 00069 00070 static void InitializeReaders(); 00071 00072 private: 00073 static vtkImageReader2Collection* AvailiableReaders; 00074 vtkImageReader2Factory(const vtkImageReader2Factory&); // Not implemented. 00075 void operator=(const vtkImageReader2Factory&); // Not implemented. 00076 //BTX 00077 friend class vtkCleanUpImageReader2Factory; 00078 //ETX 00079 }; 00080 00081 #endif