QGIS/python/core/qgsrasterpyramid.sip
jef e9e26ba052 fix #1312
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@9311 c8812cc2-4d05-0410-92ff-de0c093fc19c
2008-09-12 23:48:55 +00:00

22 lines
569 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 level;
/** \brief XDimension for this pyramid layer */
int xDim;
/** \brief YDimension for this pyramid layer */
int yDim;
/** \brief Whether the pyramid layer has been built yet */
bool exists;
/** \brief Whether the pyramid should be built */
bool build;
QgsRasterPyramid();
};