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

itkDicomImageIO.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Insight Segmentation & Registration Toolkit
00004   Module:    $RCSfile: itkDicomImageIO.h,v $
00005   Language:  C++
00006   Date:      $Date: 2005/08/12 22:59:38 $
00007   Version:   $1.0$
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 __itkDicomImageIO_h
00018 #define __itkDicomImageIO_h
00019 
00020 #ifdef _MSC_VER
00021 #pragma warning ( disable : 4786 )
00022 #endif
00023 
00024 #include "itkGDCMImageIO.h"
00025 
00026 namespace itk
00027 {
00028 
00035 class ITK_EXPORT DicomImageIO : public GDCMImageIO
00036 {
00037 public:
00039   typedef DicomImageIO Self;
00040   typedef GDCMImageIO Superclass;
00041   typedef SmartPointer<Self>  Pointer;
00042   
00044   itkNewMacro(Self);
00045 
00047   itkTypeMacro(DicomImageIO, Superclass);
00048 
00049 protected:
00050   DicomImageIO()
00051     {
00052     itkWarningMacro (<< "DicomImageIO is now implemented as a subclass of GDCMImageIO. Please replace your DicomImageIO references with GDCMImageIO.");
00053     };
00054 private:
00055   DicomImageIO(const Self&); //purposely not implemented
00056   void operator=(const Self&); //purposely not implemented
00057 };
00058 
00059 } // end namespace itk
00060 
00061 #endif // __itkDicomImageIO_h

Generated at Tue Aug 30 16:43:37 2005 for ITK by doxygen 1.4.1 written by Dimitri van Heesch, © 1997-2000