IGSTK
igstkStateMachineInput.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Image Guided Surgery Software Toolkit
4  Module: $RCSfile: igstkStateMachineInput.h,v $
5  Language: C++
6  Date: $Date: 2008-02-11 01:41:51 $
7  Version: $Revision: 1.8 $
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 
18 #ifndef __igstkStateMachineInput_h
19 #define __igstkStateMachineInput_h
20 
21 #include "igstkToken.h"
22 
23 
24 namespace igstk
25 {
26 
50 template< class T >
51 class StateMachineInput : public Token
52 {
53 
54 public:
55 
57  typedef Token Superclass;
58 
61 
63  virtual ~StateMachineInput() {}
64 
65 protected:
66 
68  virtual void PrintSelf( std::ostream& os, itk::Indent indent ) const
69  {
70  Superclass::PrintSelf(os, indent);
71  }
72 
73 };
74 
75 } // end namespace igstk
76 
77 #endif