| 1512 | } |
| 1513 | |
| 1514 | static std::shared_ptr<myArray> |
| 1515 | Create(GDALDataType eDT, const std::vector<GUInt64> &sizes, |
| 1516 | const std::vector<GUInt64> &blocksizes) |
| 1517 | { |
| 1518 | auto ar( |
| 1519 | std::shared_ptr<myArray>(new myArray(eDT, sizes, blocksizes))); |
| 1520 | ar->SetSelf(ar); |
| 1521 | return ar; |
| 1522 | } |
| 1523 | |
| 1524 | static std::shared_ptr<myArray> |
| 1525 | Create(const GDALExtendedDataType &dt, |
no outgoing calls
no test coverage detected