IGSTK
|
00001 /*========================================================================= 00002 00003 Program: Image Guided Surgery Software Toolkit 00004 Module: $RCSfile: igstkPETImageReader.h,v $ 00005 Language: C++ 00006 Date: $Date: 2011-02-04 19:43:02 $ 00007 Version: $Revision: 1.1 $ 00008 00009 Copyright (c) ISC Insight Software Consortium. All rights reserved. 00010 See IGSTKCopyright.txt or http://www.igstk.org/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 __igstkPETImageReader_h 00018 #define __igstkPETImageReader_h 00019 00020 #include "igstkDICOMImageReader.h" 00021 #include "igstkPETImageSpatialObject.h" 00022 00023 namespace igstk 00024 { 00025 00035 class PETImageReader : 00036 public DICOMImageReader< PETImageSpatialObject > 00037 { 00038 00039 public: 00040 00042 igstkStandardClassTraitsMacro( PETImageReader, 00043 DICOMImageReader< PETImageSpatialObject > ) 00044 00045 protected: 00046 00047 PETImageReader( void ); 00048 virtual ~PETImageReader( void ) {}; 00049 00051 bool CheckModalityType( DICOMInformationType modality ); 00052 00054 void PrintSelf( std::ostream& os, itk::Indent indent ) const; 00055 00056 private: 00057 00060 PETImageReader(const Self&); //purposely not implemented 00061 void operator=(const Self&); //purposely not implemented 00062 00063 00064 }; 00065 00066 } // end namespace igstk 00067 00068 #endif // __igstkPETImageReader_h