inserter.hpp 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. // Boost.Geometry Index
  2. //
  3. // Insert iterator
  4. //
  5. // Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
  6. //
  7. // Use, modification and distribution is subject to the Boost Software License,
  8. // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  9. // http://www.boost.org/LICENSE_1_0.txt)
  10. #ifndef BOOST_GEOMETRY_INDEX_INSERTER_HPP
  11. #define BOOST_GEOMETRY_INDEX_INSERTER_HPP
  12. #include <iterator>
  13. /*!
  14. \defgroup inserters Inserters (boost::geometry::index::)
  15. */
  16. namespace boost { namespace geometry { namespace index {
  17. template <class Container>
  18. class insert_iterator :
  19. public std::iterator<std::output_iterator_tag, void, void, void, void>
  20. {
  21. public:
  22. typedef Container container_type;
  23. inline explicit insert_iterator(Container & c)
  24. : container(&c)
  25. {}
  26. insert_iterator & operator=(typename Container::value_type const& value)
  27. {
  28. container->insert(value);
  29. return *this;
  30. }
  31. insert_iterator & operator* ()
  32. {
  33. return *this;
  34. }
  35. insert_iterator & operator++ ()
  36. {
  37. return *this;
  38. }
  39. insert_iterator operator++(int)
  40. {
  41. return *this;
  42. }
  43. private:
  44. Container * container;
  45. };
  46. /*!
  47. \brief Insert iterator generator.
  48. Returns insert iterator capable to insert values to the container
  49. (spatial index) which has member function insert(value_type const&) defined.
  50. \ingroup inserters
  51. \param c The reference to the container (spatial index) to which values will be inserted.
  52. \return The insert iterator inserting values to the container.
  53. */
  54. template <typename Container>
  55. insert_iterator<Container> inserter(Container & c)
  56. {
  57. return insert_iterator<Container>(c);
  58. }
  59. }}} // namespace boost::geometry::index
  60. #endif // BOOST_GEOMETRY_INDEX_INSERTER_HPP