Add sentinels to src/qgsrasterbandstats.h and src/qgsrasterpyramid.h

Add missing include to src/qgsencodingfiledialog.h
Add missing include to src/qgsrasterlayerproperties.cpp

Still need to resolve some trivial compile issues in src/qgsrasterlayerproperties.cpp


git-svn-id: http://svn.osgeo.org/qgis/trunk@4238 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
timlinux 2005-11-20 02:15:38 +00:00
parent cf2209b93d
commit 1792d8cbd4
4 changed files with 10 additions and 2 deletions

View File

@ -17,6 +17,7 @@
#define QGSENCODINGFILEDIALOG_H
#include "qgsvectordataprovider.h"
#include <QComboBox>
#include <q3combobox.h>
#include <q3filedialog.h>

View File

@ -1,3 +1,6 @@
#ifndef QGSRASTERBANDSTATS
#define QGSRASTERBANDSTATS
#include <QString>
#include <Q3ValueVector>
@ -44,4 +47,4 @@ class QgsRasterBandStats
/** Color table */
QgsColorTable colorTable;
};
#endif

View File

@ -18,6 +18,8 @@ email : tim@linfiniti.com
#include "qgsrasterlayerproperties.h"
#include "qgslayerprojectionselector.h"
#include "qgsrasterbandstats.h"
#include "qgsrasterpyramid.h"
#include "qgsproject.h"
#include <qlabel.h>
#include <qapplication.h>

View File

@ -1,3 +1,5 @@
#ifndef QGSRASTERPYRAMID
#define QGSRASTERPYRAMID
/** \brief This struct is used to store pyramid info for the raster layer. */
class QgsRasterPyramid
{
@ -12,4 +14,4 @@ class QgsRasterPyramid
bool existsFlag;
};
#endif