00001 /*========================================================================= 00002 00003 Program: Image Guided Surgery Software Toolkit 00004 Module: $RCSfile: igstkStateMachineState.h,v $ 00005 Language: C++ 00006 Date: $Date: 2008-02-11 01:41:51 $ 00007 Version: $Revision: 1.9 $ 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 __igstkStateMachineState_h 00019 #define __igstkStateMachineState_h 00020 00021 #include "igstkToken.h" 00022 00023 00024 namespace igstk 00025 { 00026 00027 00053 template< class T > 00054 class StateMachineState : public Token 00055 { 00056 public: 00057 00058 typedef StateMachineState Self; 00059 typedef Token Superclass; 00060 00062 StateMachineState() {} 00063 00065 virtual ~StateMachineState() {} 00066 00067 protected: 00068 00070 virtual void PrintSelf( std::ostream& os, itk::Indent indent ) const 00071 { 00072 Superclass::PrintSelf(os, indent); 00073 } 00074 }; 00075 00076 } // end namespace igstk 00077 00078 #endif