Chris@16: // Copyright 2012 The Trustees of Indiana University. Chris@16: Chris@16: // Distributed under the Boost Software License, Version 1.0. Chris@16: // (See accompanying file LICENSE_1_0.txt or copy at Chris@16: // http://www.boost.org/LICENSE_1_0.txt) Chris@16: Chris@16: // Authors: Jeremiah Willcock Chris@16: // Andrew Lumsdaine Chris@16: Chris@16: // Selector to determine whether a selector is distributedS (can only be true Chris@16: // if has been included) so that we can Chris@16: // disable various sequential-graph-only traits specializations for distributed Chris@16: // graphs. Chris@16: Chris@16: #ifndef BOOST_GRAPH_DETAIL_IS_DISTRIBUTED_SELECTOR_HPP Chris@16: #define BOOST_GRAPH_DETAIL_IS_DISTRIBUTED_SELECTOR_HPP Chris@16: Chris@16: #include Chris@16: Chris@16: namespace boost { Chris@16: namespace detail { Chris@16: template struct is_distributed_selector: boost::mpl::false_ {}; Chris@16: } Chris@16: } Chris@16: Chris@16: #endif // BOOST_GRAPH_DETAIL_IS_DISTRIBUTED_SELECTOR_HPP