VTK
dox/IO/vtkImageReader2Factory.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    vtkImageReader2Factory.h
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 
00046 class vtkImageReader2;
00047 class vtkImageReader2Collection;
00048 class vtkImageReader2FactoryCleanup;
00049 
00050 class VTK_IO_EXPORT vtkImageReader2Factory : public vtkObject
00051 {
00052 public:
00053   static vtkImageReader2Factory *New();
00054   vtkTypeMacro(vtkImageReader2Factory,vtkObject);
00055   void PrintSelf(ostream& os, vtkIndent indent);   
00056   
00059   static void RegisterReader(vtkImageReader2* r);
00060   
00063   static vtkImageReader2* CreateImageReader2(const char* path); 
00064 
00066 
00068   static void GetRegisteredReaders(vtkImageReader2Collection* );
00069 protected:
00070   vtkImageReader2Factory();
00071   ~vtkImageReader2Factory();
00073 
00074   static void InitializeReaders();
00075 
00076 private:
00077   static vtkImageReader2Collection* AvailableReaders;
00078   vtkImageReader2Factory(const vtkImageReader2Factory&);  // Not implemented.
00079   void operator=(const vtkImageReader2Factory&);  // Not implemented.
00080 //BTX
00081   friend class vtkImageReader2FactoryCleanup;
00082 //ETX
00083 };
00084 
00085 #endif