multi_point.hpp 675 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
#pragma once

// mapbox
#include <mapbox/geometry/point.hpp>
// stl
#include <vector>

namespace mapbox {
namespace geometry {

template <typename T, template <typename...> class Cont = std::vector>
struct multi_point : Cont<point<T>>
{
    using coordinate_type = T;
    using point_type = point<T>;
    using container_type = Cont<point_type>;
    using size_type = typename container_type::size_type;

    template <class... Args>
    multi_point(Args&&... args) : container_type(std::forward<Args>(args)...)
    {
    }
    multi_point(std::initializer_list<point_type> args)
        : container_type(std::move(args)) {}
};

} // namespace geometry
} // namespace mapbox