123456789101112131415161718192021222324252627282930 |
- #ifndef BOOST_GRAPH_DETAIL_IS_DISTRIBUTED_SELECTOR_HPP
- #define BOOST_GRAPH_DETAIL_IS_DISTRIBUTED_SELECTOR_HPP
- #include <boost/mpl/bool.hpp>
- namespace boost
- {
- namespace detail
- {
- template < typename > struct is_distributed_selector : boost::mpl::false_
- {
- };
- }
- }
- #endif
|