File indexing completed on 2025-01-18 09:42:05
0001
0002
0003
0004
0005 #ifndef BOOST_MSM_MPL_GRAPH_DETAIL_GRAPH_IMPLEMENTATION_INTERFACE_IPP_INCLUDED
0006 #define BOOST_MSM_MPL_GRAPH_DETAIL_GRAPH_IMPLEMENTATION_INTERFACE_IPP_INCLUDED
0007
0008
0009
0010
0011 namespace boost {
0012 namespace msm {
0013 namespace mpl_graph {
0014 namespace detail {
0015
0016
0017 template<typename RepresentationTag, typename Source, typename GraphData>
0018 struct produce_out_map;
0019
0020
0021 template<typename RepresentationTag, typename Target, typename GraphData>
0022 struct produce_in_map;
0023
0024
0025 template<typename RepresentationTag, typename GraphData>
0026 struct produce_edge_st_map;
0027
0028
0029 template<typename RepresentationTag, typename GraphData>
0030 struct produce_vertex_set;
0031
0032
0033 template<typename RepresentationTag, typename GraphData>
0034 struct produce_edge_set;
0035
0036 }
0037 }
0038 }
0039 }
0040
0041 #endif
0042