12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- #ifndef BOOST_GEOMETRY_ALGORITHMS_DISPATCH_EXPAND_HPP
- #define BOOST_GEOMETRY_ALGORITHMS_DISPATCH_EXPAND_HPP
- #include <boost/geometry/core/cs.hpp>
- #include <boost/geometry/core/tag.hpp>
- #include <boost/geometry/strategies/compare.hpp>
- #include <boost/geometry/policies/compare.hpp>
- #include <boost/geometry/algorithms/not_implemented.hpp>
- namespace boost { namespace geometry
- {
- #ifndef DOXYGEN_NO_DISPATCH
- namespace dispatch
- {
- template
- <
- typename GeometryOut, typename Geometry,
- typename TagOut = typename tag<GeometryOut>::type,
- typename Tag = typename tag<Geometry>::type
- >
- struct expand : not_implemented<TagOut, Tag>
- {};
- }
- #endif
- }}
- #endif
|