CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Types | Public Member Functions
smproxy::Ready Class Reference

#include <States.h>

Inheritance diagram for smproxy::Ready:
smproxy::State< Ready, AllOk > smproxy::StateName

Public Types

typedef boost::mpl::list
< boost::statechart::transition
< Enable, Enabled >
, boost::statechart::transition
< Halt, Halted > > 
reactions
 

Public Member Functions

virtual void entryAction ()
 
 Ready (my_context c)
 
virtual ~Ready ()
 
- Public Member Functions inherited from smproxy::State< Ready, AllOk >
std::string stateName () const
 

Additional Inherited Members

- Protected Types inherited from smproxy::State< Ready, AllOk >
typedef
boost::statechart::state
< Ready, AllOk,
boost::mpl::list
<>, boost::statechart::has_no_history > 
boost_state
 
typedef State my_state
 
- Protected Member Functions inherited from smproxy::State< Ready, AllOk >
virtual void exitAction ()
 
void safeEntryAction ()
 
void safeExitAction ()
 
 State (const std::string stateName, typename boost_state::my_context &c)
 
virtual ~State ()
 
- Protected Attributes inherited from smproxy::State< Ready, AllOk >
const std::string stateName_
 

Detailed Description

The Ready state of the outer-state AllOk.

Definition at line 262 of file States.h.

Member Typedef Documentation

typedef boost::mpl::list< boost::statechart::transition<Enable,Enabled>, boost::statechart::transition<Halt,Halted> > smproxy::Ready::reactions

Definition at line 270 of file States.h.

Constructor & Destructor Documentation

smproxy::Ready::Ready ( my_context  c)
inline

Definition at line 272 of file States.h.

References smproxy::State< Ready, AllOk >::safeEntryAction().

272  : my_state("Ready", c)
273  { safeEntryAction(); }
virtual smproxy::Ready::~Ready ( )
inlinevirtual

Definition at line 274 of file States.h.

References smproxy::State< Ready, AllOk >::safeExitAction().

275  { safeExitAction(); }

Member Function Documentation

virtual void smproxy::Ready::entryAction ( )
inlinevirtual

Reimplemented from smproxy::State< Ready, AllOk >.

Definition at line 277 of file States.h.

278  { outermost_context().setExternallyVisibleStateName("Ready"); }