Changes between Version 55 and Version 56 of rfc24_progressive_data_support


Ignore:
Timestamp:
Sep 4, 2008, 8:11:27 AM (16 years ago)
Author:
normanb
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • rfc24_progressive_data_support

    v55 v56  
    156156
    157157        virtual CPLErr SetView(int xOff, int yOff, int xSize, int ySize);
    158         virtual CPLErr ReadNextBlock(void *pData, char **papszOptions);
    159158        virtual CPLErr RasterIO(void *pData, int nTimeoutMilliseconds = -1, char **papszOptions);
    160159        virtual void CancelIO();
     
    299298}
    300299
    301 /*************************************************************************/
    302 /* ===================================================================== */
    303 /*                       ReadNextBlock()                                 */
    304 /* ===================================================================== */
    305 /*************************************************************************/
    306 
    307 /**
    308 * Read the next data block from the driver cache to the remote server
    309 * data type is set in @see CreateRasterIOContext()
    310 * @param pData, data buffer to fill, if the data in the driver cache does not contain a value the buffer will be zero filled
    311 * @param papszOptions options for the driver implementation e.g. Quality="Xxx" to specify maximum jpip quality layers
    312 */
    313 CPLErr GDALRasterIOContext::ReadNextBlock(void *pData, char **papszOptions)
    314 {
    315         // return a warning, this method should be overridden
    316         return CE_Warning;
    317 }
    318 
    319300/*******************************************************************************/
    320301/* =========================================================================== */