| 60 | |
| 61 | |
| 62 | void SpatialRef::setFromLayer(OGRLayerH layer) |
| 63 | { |
| 64 | if (layer) |
| 65 | { |
| 66 | OGRSpatialReferenceH s = OGR_L_GetSpatialRef(layer); |
| 67 | if (s) |
| 68 | { |
| 69 | OGRSpatialReferenceH clone = OSRClone(s); |
| 70 | newRef(clone); |
| 71 | } |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | |
| 76 | SpatialRef::operator bool () const |
no outgoing calls
no test coverage detected