dsv.qbk 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. [/============================================================================
  2. Boost.Geometry (aka GGL, Generic Geometry Library)
  3. Copyright (c) 2007-2013 Barend Gehrels, Amsterdam, the Netherlands.
  4. Copyright (c) 2008-2013 Bruno Lalande, Paris, France.
  5. Copyright (c) 2009-2013 Mateusz Loskot, London, UK.
  6. Use, modification and distribution is subject to the Boost Software License,
  7. Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  8. http://www.boost.org/LICENSE_1_0.txt)
  9. =============================================================================/]
  10. [/ Generated by doxygen_xml2qbk 1.1.1, don't change, will be overwritten automatically]
  11. [/ Generated from doxy/doxygen_output/xml/group__dsv.xml]
  12. [section:dsv dsv]
  13. '''<indexterm><primary>dsv</primary></indexterm>'''
  14. Main DSV-streaming function.
  15. [heading Description]
  16. DSV stands for Delimiter Separated Values. Geometries can be streamed as DSV. There are defaults for all separators.
  17. [heading Synopsis]
  18. ``template<typename Geometry>
  19. detail::dsv::dsv_manipulator<Geometry> dsv(Geometry const & geometry, std::string const & coordinate_separator = ", ", std::string const & point_open = "(",
  20. std::string const & point_close = ")", std::string const & point_separator = ", ", std::string const & list_open = "(",
  21. std::string const & list_close = ")", std::string const & list_separator = ", ")``
  22. [heading Parameters]
  23. [table
  24. [[Type] [Concept] [Name] [Description] ]
  25. [[Geometry const &] [] [geometry] []]
  26. [[std::string const &] [] [coordinate_separator] []]
  27. [[std::string const &] [] [point_open] []]
  28. [[std::string const &] [] [point_close] []]
  29. [[std::string const &] [] [point_separator] []]
  30. [[std::string const &] [] [list_open] []]
  31. [[std::string const &] [] [list_close] []]
  32. [[std::string const &] [] [list_separator] []]
  33. ]
  34. [heading Header]
  35. Either
  36. `#include <boost/geometry.hpp>`
  37. Or
  38. `#include <boost/geometry/io/dsv/write.hpp>`
  39. [endsect]