123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #ifndef BOOST_MSM_MPL_GRAPH_DETAIL_GRAPH_IMPLEMENTATION_INTERFACE_IPP_INCLUDED
- #define BOOST_MSM_MPL_GRAPH_DETAIL_GRAPH_IMPLEMENTATION_INTERFACE_IPP_INCLUDED
- namespace boost {
- namespace msm {
- namespace mpl_graph {
- namespace detail {
-
-
- template<typename RepresentationTag, typename Source, typename GraphData>
- struct produce_out_map;
-
- template<typename RepresentationTag, typename Target, typename GraphData>
- struct produce_in_map;
-
-
- template<typename RepresentationTag, typename GraphData>
- struct produce_edge_st_map;
-
-
- template<typename RepresentationTag, typename GraphData>
- struct produce_vertex_set;
-
-
- template<typename RepresentationTag, typename GraphData>
- struct produce_edge_set;
- }
- }
- }
- }
- #endif
|