| 90 | |
| 91 | |
| 92 | void OGRWriter::initialize() |
| 93 | { |
| 94 | gdal::registerDrivers(); |
| 95 | if (m_multiCount < 1) |
| 96 | throwError("multicount must be greater than 0."); |
| 97 | else if (m_multiCount > 1 && m_attrDimNames.size() > 0) { |
| 98 | throwError("multicount > 1 incompatible with attr_dims"); |
| 99 | } |
| 100 | } |
| 101 | |
| 102 | |
| 103 | void OGRWriter::prepared(PointTableRef table) |
no test coverage detected