mapnik::feature_impl - add set_geometry_copy(geometry const&)

This commit is contained in:
artemp 2015-03-23 10:43:20 +01:00
parent dca44f799b
commit e6905272b7

View file

@ -200,6 +200,11 @@ public:
geom_ = std::move(geom);
}
inline void set_geometry_copy(new_geometry::geometry const& geom)
{
geom_ = geom;
}
inline new_geometry::geometry const& get_geometry() const
{
return geom_;