29.03.2016, 20:48, Even Rouault kirjoitti:
Le mardi 29 mars 2016 17:35:26, Ari Jolma a écrit :
I want to write template functions like this:
template
void map(GDALRasterBand *b, mapper *mapper) {
...
This function would map the cell values of a band to new ones using some
logic that is coded w
Le mardi 29 mars 2016 17:35:26, Ari Jolma a écrit :
> I want to write template functions like this:
>
> template
> void map(GDALRasterBand *b, mapper *mapper) {
> ...
>
> This function would map the cell values of a band to new ones using some
> logic that is coded within the mapper object (and t
I want to write template functions like this:
template
void map(GDALRasterBand *b, mapper *mapper) {
...
This function would map the cell values of a band to new ones using some
logic that is coded within the mapper object (and the logic depends on
the cell_type).
I would like to catch error