12345678910111213141516171819202122232425262728293031 |
- #ifndef BOOST_GRAPH_POINT_TRAITS_HPP
- #define BOOST_GRAPH_POINT_TRAITS_HPP
- #include <cstddef>
- 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
|