Fix for bug #1854 qgisinterpolator.cpp causing build error on OS X

git-svn-id: http://svn.osgeo.org/qgis/trunk@11274 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
mhugent 2009-08-05 13:25:06 +00:00
parent c86b9ab37e
commit 3ddd1795ad
4 changed files with 13 additions and 1 deletions

View File

@ -20,8 +20,8 @@
#define QGIS_H
#include <QEvent>
#include <QString>
#include <cmath>
#include <cfloat>
/** \ingroup core
* The QGis class provides global constants for use throughout the application.
*/

View File

@ -17,7 +17,11 @@
#ifndef MATHUTILS_H
#define MATHUTILS_H
#ifndef Q_OS_MACX
#include <cmath>
#else
#include <math.h>
#endif
#include "Vector3D.h"
#include "Point3D.h"

View File

@ -17,7 +17,11 @@
#ifndef POINT3D_H
#define POINT3D_H
#ifndef Q_OS_MACX
#include <cmath>
#else
#include <math.h>
#endif
#include <iostream>
/**Point3D is a class to represent a three dimensional point*/

View File

@ -17,7 +17,11 @@
#ifndef VECTOR3D_H
#define VECTOR3D_H
#ifndef Q_OS_MACX
#include <cmath>
#else
#include <math.h>
#endif
class Vector3D
/**