00001 /*========================================================================= 00002 00003 Program: Image Guided Surgery Software Toolkit 00004 Module: $RCSfile: igstkSimulatedTrackerTool.h,v $ 00005 Language: C++ 00006 Date: $Date: 2008-03-28 19:29:50 $ 00007 Version: $Revision: 1.3 $ 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 00018 #ifndef __igstkSimulatedTrackerTool_h 00019 #define __igstkSimulatedTrackerTool_h 00020 00021 #include "igstkTrackerTool.h" 00022 00023 namespace igstk 00024 { 00025 00026 class SimulatedTracker; 00027 00035 class SimulatedTrackerTool : public TrackerTool 00036 { 00037 public: 00038 00040 igstkStandardClassTraitsMacro( SimulatedTrackerTool, TrackerTool ) 00041 00042 typedef std::string NameType; 00043 00045 igstkGetStringMacro( Name ); 00046 00048 virtual void RequestSetName( const NameType & Name ); 00049 00050 protected: 00051 00052 SimulatedTrackerTool(); 00053 ~SimulatedTrackerTool(); 00054 00056 virtual void PrintSelf( std::ostream& os, ::itk::Indent indent ) const; 00057 00058 private: 00059 00062 virtual bool CheckIfTrackerToolIsConfigured() const; 00063 00064 SimulatedTrackerTool(const Self&); //purposely not implemented 00065 void operator=(const Self&); //purposely not implemented 00066 00067 NameType m_Name; 00068 00069 bool m_TrackerToolConfigured; 00070 00071 }; 00072 00073 } // namespace igstk 00074 00075 00076 #endif // __igstk_SimulatedTrackerTool_h_