2
0
mirror of https://github.com/boostorg/graph.git synced 2026-01-30 20:02:12 +00:00

added #include of graph_selectors

[SVN r8793]
This commit is contained in:
Jeremy Siek
2001-01-27 21:21:36 +00:00
parent c5ba516e61
commit f0c68c9003

View File

@@ -43,6 +43,7 @@
#endif
#include <boost/graph/graph_traits.hpp>
#include <boost/graph/graph_selectors.hpp>
#include <boost/property_map.hpp>
#include <boost/pending/ct_if.hpp>
#include <boost/graph/detail/edge.hpp>
@@ -252,23 +253,6 @@ namespace boost {
} // namespace detail
//===========================================================================
// Selectors for the Directed template parameter of adjacency_list.
struct directedS { enum { is_directed = true, is_bidir = false };
typedef true_type is_directed_t;
typedef false_type is_bidir_t;
};
struct undirectedS {
enum { is_directed = false, is_bidir = false };
typedef false_type is_directed_t;
typedef false_type is_bidir_t;
};
struct bidirectionalS {
enum { is_directed = true, is_bidir = true };
typedef true_type is_directed_t;
typedef true_type is_bidir_t;
};
//===========================================================================
// The adjacency_list_traits class, which provides a way to access