| 104 | |
| 105 | |
| 106 | OGR::OGR(std::string const& filename, const std::string& wkt, |
| 107 | std::string driver, std::string layerName) |
| 108 | : m_filename(filename) |
| 109 | , m_driver(driver) |
| 110 | , m_ds(0) |
| 111 | , m_layer(0) |
| 112 | , m_layerName(layerName) |
| 113 | { |
| 114 | createLayer(wkt); |
| 115 | } |
| 116 | |
| 117 | |
| 118 | OGR::~OGR() |
nothing calls this directly
no outgoing calls
no test coverage detected