IGSTK
|
00001 /*========================================================================= 00002 00003 Program: Image Guided Surgery Software Toolkit 00004 Module: $RCSfile: igstkMRImageSpatialObject.h,v $ 00005 Language: C++ 00006 Date: $Date: 2008-02-11 01:41:50 $ 00007 Version: $Revision: 1.7 $ 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 __igstkMRImageSpatialObject_h 00018 #define __igstkMRImageSpatialObject_h 00019 00020 #include "igstkImageSpatialObject.h" 00021 00022 namespace igstk 00023 { 00024 00041 class MRImageSpatialObject : 00042 public ImageSpatialObject< unsigned short, 3 > 00043 { 00044 00045 public: 00046 00050 typedef ImageSpatialObject< unsigned short, 3 > SuperclassType; 00051 00053 igstkStandardClassTraitsMacro( MRImageSpatialObject, SuperclassType ) 00054 00055 protected: 00056 00057 MRImageSpatialObject( void ); 00058 virtual ~MRImageSpatialObject( void ); 00059 00061 void PrintSelf( std::ostream& os, itk::Indent indent ) const; 00062 00063 private: 00064 00067 MRImageSpatialObject(const Self&); //purposely not implemented 00068 void operator=(const Self&); //purposely not implemented 00069 00070 00071 }; 00072 00073 } // end namespace igstk 00074 00075 #endif // __igstkMRImageSpatialObject_h