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::Halted Class Reference

#include <States.h>

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

Public Types

typedef boost::mpl::list
< boost::statechart::transition
< Configure, Configuring > > 
reactions
 

Public Member Functions

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

Additional Inherited Members

- Protected Types inherited from smproxy::State< Halted, AllOk >
typedef
boost::statechart::state
< Halted, AllOk,
boost::mpl::list
<>, boost::statechart::has_no_history > 
boost_state
 
typedef State my_state
 
- Protected Member Functions inherited from smproxy::State< Halted, 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< Halted, AllOk >
const std::string stateName_
 

Detailed Description

The Halted state of outer-state AllOk.

Definition at line 212 of file States.h.

Member Typedef Documentation

typedef boost::mpl::list< boost::statechart::transition<Configure,Configuring> > smproxy::Halted::reactions

Definition at line 219 of file States.h.

Constructor & Destructor Documentation

smproxy::Halted::Halted ( my_context  c)
inline

Definition at line 221 of file States.h.

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

221  : my_state("Halted", c)
222  { safeEntryAction(); }
virtual smproxy::Halted::~Halted ( )
inlinevirtual

Definition at line 223 of file States.h.

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

224  { safeExitAction(); }

Member Function Documentation

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

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

Definition at line 226 of file States.h.

227  { outermost_context().setExternallyVisibleStateName("Halted"); }