Main Page   Groups   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Concepts

itkSiemensVisionImageIOFactory.h

Go to the documentation of this file.
00001 /*========================================================================= 00002 00003 Program: Insight Segmentation & Registration Toolkit 00004 Module: $RCSfile: itkSiemensVisionImageIOFactory.h,v $ 00005 Language: C++ 00006 Date: $Date: 2004/01/08 00:39:08 $ 00007 Version: $Revision: 1.5 $ 00008 00009 Copyright (c) Insight Software Consortium. All rights reserved. 00010 See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details. 00011 00012 This software is distributed WITHOUT ANY WARRANTY; without even 00013 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00014 PURPOSE. See the above copyright notices for more information. 00015 00016 =========================================================================*/ 00017 #ifndef __itkSiemensVisionImageIOFactory_h 00018 #define __itkSiemensVisionImageIOFactory_h 00019 00020 #ifdef _MSC_VER 00021 #pragma warning ( disable : 4786 ) 00022 #endif 00023 00024 #include "itkObjectFactoryBase.h" 00025 #include "itkImageIOBase.h" 00026 00027 namespace itk 00028 { 00032 class ITK_EXPORT SiemensVisionImageIOFactory : public ObjectFactoryBase 00033 { 00034 public: 00036 typedef SiemensVisionImageIOFactory Self; 00037 typedef ObjectFactoryBase Superclass; 00038 typedef SmartPointer<Self> Pointer; 00039 typedef SmartPointer<const Self> ConstPointer; 00040 00042 virtual const char* GetITKSourceVersion(void) const; 00043 virtual const char* GetDescription(void) const; 00044 00046 itkFactorylessNewMacro(Self); 00047 00049 itkTypeMacro(SiemensVisionImageIOFactory, ObjectFactoryBase); 00050 00052 static void RegisterOneFactory(void) 00053 { 00054 SiemensVisionImageIOFactory::Pointer metaFactory = SiemensVisionImageIOFactory::New(); 00055 ObjectFactoryBase::RegisterFactory(metaFactory); 00056 } 00057 00058 protected: 00059 SiemensVisionImageIOFactory(); 00060 ~SiemensVisionImageIOFactory(); 00061 virtual void PrintSelf(std::ostream& os, Indent indent) const; 00062 00063 private: 00064 SiemensVisionImageIOFactory(const Self&); //purposely not implemented 00065 void operator=(const Self&); //purposely not implemented 00066 00067 }; 00068 00069 00070 } // end namespace itk 00071 00072 #endif

Generated at Sun Apr 1 02:44:26 2007 for ITK by doxygen 1.3.8 written by Dimitri van Heesch, © 1997-2000