Determine if this represents a valid transform. \return Whether the transform is valid or not.
| 83 | /// Determine if this represents a valid transform. |
| 84 | /// \return Whether the transform is valid or not. |
| 85 | bool valid() const |
| 86 | { return (bool)m_transform.get(); } |
| 87 | |
| 88 | private: |
| 89 | std::unique_ptr<OGRCoordinateTransformation> m_transform; |
no test coverage detected