| 1466 | /************************************************************************/ |
| 1467 | |
| 1468 | CPLErr RawRasterBand::SetColorTable(GDALColorTable *poNewCT) |
| 1469 | |
| 1470 | { |
| 1471 | if (poCT) |
| 1472 | delete poCT; |
| 1473 | if (poNewCT == nullptr) |
| 1474 | poCT = nullptr; |
| 1475 | else |
| 1476 | poCT = poNewCT->Clone(); |
| 1477 | |
| 1478 | return CE_None; |
| 1479 | } |
| 1480 | |
| 1481 | /************************************************************************/ |
| 1482 | /* GetColorTable() */ |