~ubuntu-branches/ubuntu/wily/qgis/wily

« back to all changes in this revision

Viewing changes to src/raster/qgsrasterpyramid.h

  • Committer: Bazaar Package Importer
  • Author(s): Johan Van de Wauw
  • Date: 2010-07-11 20:23:24 UTC
  • mfrom: (3.1.4 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100711202324-5ktghxa7hracohmr
Tags: 1.4.0+12730-3ubuntu1
* Merge from Debian unstable (LP: #540941).
* Fix compilation issues with QT 4.7
* Add build-depends on libqt4-webkit-dev 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef QGSRASTERPYRAMID
2
 
#define QGSRASTERPYRAMID
3
 
/** \brief This struct is used to store pyramid info for the raster layer. */
4
 
class QgsRasterPyramid
5
 
{
6
 
  public:
7
 
  /** \brief The pyramid level as implemented in gdal (level 2 is half orignal raster size etc) */
8
 
  int levelInt;
9
 
  /** \brief XDimension for this pyramid layer */
10
 
  int xDimInt;
11
 
  /** \brief YDimension for this pyramid layer */
12
 
  int yDimInt;
13
 
  /** \brief Whether the pyramid layer has been built yet */
14
 
  bool existsFlag;
15
 
 
16
 
};
17
 
#endif