comparison DEPENDENCIES/generic/include/boost/geometry/views/closeable_view.hpp @ 101:c530137014c0

Update Boost headers (1.58.0)
author Chris Cannam
date Mon, 07 Sep 2015 11:12:49 +0100
parents 2665513ce2d3
children
comparison
equal deleted inserted replaced
100:793467b5e61c 101:c530137014c0
28 namespace boost { namespace geometry 28 namespace boost { namespace geometry
29 { 29 {
30 30
31 // Silence warning C4512: assignment operator could not be generated 31 // Silence warning C4512: assignment operator could not be generated
32 #if defined(_MSC_VER) 32 #if defined(_MSC_VER)
33 #pragma warning(push) 33 #pragma warning(push)
34 #pragma warning(disable : 4512) 34 #pragma warning(disable : 4512)
35 #endif 35 #endif
36 36
37 #ifndef DOXYGEN_NO_DETAIL 37 #ifndef DOXYGEN_NO_DETAIL
38 38
65 65
66 66
67 /*! 67 /*!
68 \brief View on a range, either closing it or leaving it as it is 68 \brief View on a range, either closing it or leaving it as it is
69 \details The closeable_view is used internally by the library to handle all rings, 69 \details The closeable_view is used internally by the library to handle all rings,
70 either closed or open, the same way. The default method is closed, all 70 either closed or open, the same way. The default method is closed, all
71 algorithms process rings as if they are closed. Therefore, if they are opened, 71 algorithms process rings as if they are closed. Therefore, if they are opened,
72 a view is created which closes them. 72 a view is created which closes them.
73 The closeable_view might be used by library users, but its main purpose is 73 The closeable_view might be used by library users, but its main purpose is
74 internally. 74 internally.
75 \tparam Range Original range 75 \tparam Range Original range