IGSTK
/build/buildd/igstk-4.4.0/Source/igstkView3D.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Image Guided Surgery Software Toolkit
00004   Module:    $RCSfile: igstkView3D.h,v $
00005   Language:  C++
00006   Date:      $Date: 2008-02-11 01:41:51 $
00007   Version:   $Revision: 1.11 $
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 __igstkView3D_h
00018 #define __igstkView3D_h
00019 
00020 #include "igstkView.h"
00021 
00022 namespace igstk {
00023 
00043 class View3D : public View 
00044 {
00045 public:
00046 
00047   igstkStandardClassTraitsMacro( View3D, View ); 
00048 
00050   void PrintSelf( std::ostream& os, ::itk::Indent indent ) const; 
00051 
00052 protected:
00054   View3D( );
00055 
00057   virtual ~View3D( void );
00058 
00059 private:
00060   View3D(const View3D& ); // purposely not implemented
00061   View3D& operator=(const View3D& ); // purposely not implemented
00062 
00063 };
00064 
00065 } // end namespace igstk
00066 
00067 #endif