mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@6415 c8812cc2-4d05-0410-92ff-de0c093fc19c
19 lines
494 B
Plaintext
19 lines
494 B
Plaintext
/** \brief This struct is used to store pyramid info for the raster layer. */
|
|
class QgsRasterPyramid
|
|
{
|
|
%TypeHeaderCode
|
|
#include <qgsrasterpyramid.h>
|
|
%End
|
|
|
|
public:
|
|
/** \brief The pyramid level as implemented in gdal (level 2 is half orignal raster size etc) */
|
|
int levelInt;
|
|
/** \brief XDimension for this pyramid layer */
|
|
int xDimInt;
|
|
/** \brief YDimension for this pyramid layer */
|
|
int yDimInt;
|
|
/** \brief Whether the pyramid layer has been built yet */
|
|
bool existsFlag;
|
|
|
|
};
|