| 97 | } |
| 98 | |
| 99 | void Geometry::construct(void *g) |
| 100 | { |
| 101 | OGRGeometry* geom(nullptr); |
| 102 | geom = reinterpret_cast<OGRGeometry *>(g); |
| 103 | |
| 104 | if (geom) |
| 105 | m_geom.reset(geom->clone()); |
| 106 | } |
| 107 | |
| 108 | |
| 109 | void Geometry::construct(void *g, const SpatialReference& srs) |
nothing calls this directly
no test coverage detected