Changes between Version 3 and Version 4 of rfc8_devguide


Ignore:
Timestamp:
Aug 1, 2010, 11:14:09 AM (14 years ago)
Author:
newacct
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • rfc8_devguide

    v3 v4  
    2626
    2727Much of the existing GDAL and OGR code uses an adapted Hungarian naming
    28 convention.  Use of this convention is not manditory, but when maintaining
     28convention.  Use of this convention is not mandatory, but when maintaining
    2929code using this convention it is desirable to continue adhering to it with
    3030changes.  Most importantly, please avoiding using it improperly as that can
     
    5151variables.
    5252
    53  * '''char **papszTokens''': Pointer to an array of strings.
    54  * '''int *panBands''': Pointer to an array of numbers.
    55  * '''double *padfScanline''': Pointer to an array of doubles.
     53 * '''char **papszTokens''': Pointer to the first element of an array of strings.
     54 * '''int *panBands''': Pointer to the first element of an array of numbers.
     55 * '''double *padfScanline''': Pointer to the first element of an array of doubles.
    5656 * '''double *pdfMeanRet''': Pointer to a single double.
    5757 * '''GDALRasterBand *poBand''': Pointer to a single object.