123456789101112131415161718192021222324252627282930313233343536 |
- #ifndef BOOST_MSM_BACK_NO_FSM_CHECK_H
- #define BOOST_MSM_BACK_NO_FSM_CHECK_H
- #include <boost/mpl/assert.hpp>
- namespace boost { namespace msm { namespace back
- {
- struct no_fsm_check
- {
- typedef int fsm_check;
-
- template <class Fsm>
- static void check_orthogonality()
- {
- }
- template <class Fsm>
- static void check_unreachable_states()
- {
- }
- };
- } } }
- #endif
|