Quantum GIS API Documentation
1.7.4
|
00001 /*************************************************************************** 00002 qgsrasterpyramid.h 00003 00004 ------------------- 00005 begin : 2007 00006 copyright : (C) 2007 by Gary E. Sherman 00007 email : sherman@mrcc.com 00008 ***************************************************************************/ 00009 00010 /*************************************************************************** 00011 * * 00012 * This program is free software; you can redistribute it and/or modify * 00013 * it under the terms of the GNU General Public License as published by * 00014 * the Free Software Foundation; either version 2 of the License, or * 00015 * (at your option) any later version. * 00016 * * 00017 ***************************************************************************/ 00018 #ifndef QGSRASTERPYRAMID 00019 #define QGSRASTERPYRAMID 00020 00023 class CORE_EXPORT QgsRasterPyramid 00024 { 00025 public: 00027 int level; 00029 int xDim; 00031 int yDim; 00033 bool exists; 00035 bool build; 00036 00037 QgsRasterPyramid() 00038 { 00039 level = 0; 00040 xDim = 0; 00041 yDim = 0; 00042 exists = false; 00043 build = false; 00044 } 00045 00046 }; 00047 #endif