12345678910111213141516171819202122232425262728293031323334 |
- #ifndef BOOST_MSM_MPL_GRAPH_INCIDENCE_LIST_GRAPH_HPP_INCLUDED
- #define BOOST_MSM_MPL_GRAPH_INCIDENCE_LIST_GRAPH_HPP_INCLUDED
- #include <boost/msm/mpl_graph/mpl_graph.hpp>
- #include <boost/msm/mpl_graph/detail/incidence_list_graph.ipp>
- namespace boost {
- namespace msm {
- namespace mpl_graph {
-
- template<typename EdgeSequence>
- struct incidence_list_graph {
- typedef detail::incidence_list_tag representation;
- typedef EdgeSequence data;
- };
- }
- }
- }
- #endif
|