mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
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:
parent
c86b9ab37e
commit
3ddd1795ad
@ -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.
|
||||
*/
|
||||
|
@ -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"
|
||||
|
||||
|
@ -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*/
|
||||
|
@ -17,7 +17,11 @@
|
||||
#ifndef VECTOR3D_H
|
||||
#define VECTOR3D_H
|
||||
|
||||
#ifndef Q_OS_MACX
|
||||
#include <cmath>
|
||||
#else
|
||||
#include <math.h>
|
||||
#endif
|
||||
|
||||
class Vector3D
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user