IGSTK
igstkView3D.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Image Guided Surgery Software Toolkit
4  Module: $RCSfile: igstkView3D.h,v $
5  Language: C++
6  Date: $Date: 2008-02-11 01:41:51 $
7  Version: $Revision: 1.11 $
8 
9  Copyright (c) ISC Insight Software Consortium. All rights reserved.
10  See IGSTKCopyright.txt or http://www.igstk.org/copyright.htm for details.
11 
12  This software is distributed WITHOUT ANY WARRANTY; without even
13  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14  PURPOSE. See the above copyright notices for more information.
15 
16 =========================================================================*/
17 #ifndef __igstkView3D_h
18 #define __igstkView3D_h
19 
20 #include "igstkView.h"
21 
22 namespace igstk {
23 
43 class View3D : public View
44 {
45 public:
46 
48 
50  void PrintSelf( std::ostream& os, ::itk::Indent indent ) const;
51 
52 protected:
54  View3D( );
55 
57  virtual ~View3D( void );
58 
59 private:
60  View3D(const View3D& ); // purposely not implemented
61  View3D& operator=(const View3D& ); // purposely not implemented
62 
63 };
64 
65 } // end namespace igstk
66 
67 #endif