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