12345678910111213141516171819202122232425262728293031 |
- #ifndef BOOST_MSM_FRONT_COMMON_COMPLETION_EVENT_H
- #define BOOST_MSM_FRONT_COMMON_COMPLETION_EVENT_H
- namespace boost { namespace msm { namespace front
- {
- struct none
- {
-
-
- none(){}
- template <class Event>
- none(Event const&){}
- typedef int completion_event;
- };
- }}}
- #endif
|