/usr/include/boost/msm/mpl_graph
NameSizeModeActions
detail/-0755rm
adjacency_list_graph.hpp11130644editdlrm
breadth_first_search.hpp72180644editdlrm
depth_first_search.hpp54120644editdlrm
incidence_list_graph.hpp10700644editdlrm
mpl_graph.hpp37830644editdlrm
mpl_utils.hpp17380644editdlrm
search_colors.hpp10010644editdlrm
Edit: /usr/include/boost/msm/mpl_graph/search_colors.hpp (1001B)
// Copyright 2008-2010 Gordon Woodhull // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_MSM_MPL_GRAPH_SEARCH_COLORS_HPP_INCLUDED #define BOOST_MSM_MPL_GRAPH_SEARCH_COLORS_HPP_INCLUDED namespace boost { namespace msm { namespace mpl_graph { namespace search_colors { struct White {}; struct Gray {}; struct Black {}; } struct create_search_color_map : mpl::map<> {}; struct search_color_map_ops { template struct set_color : mpl::insert > {}; template struct get_color : mpl::if_, mpl::at, search_colors::White> {}; }; } // namespace mpl_graph } // namespace msm } // namespace boost #endif // BOOST_MSM_MPL_GRAPH_SEARCH_COLORS_HPP_INCLUDED