1234567891011121314151617181920212223242526272829 |
- #ifndef BOOST_GRAPH_POINT_TRAITS_HPP
- #define BOOST_GRAPH_POINT_TRAITS_HPP
- namespace boost
- {
- namespace graph
- {
- template < typename Point > struct point_traits
- {
-
- typedef typename Point::component_type component_type;
-
- static std::size_t dimensions(const Point& point);
- };
- }
- }
- #endif
|