1
0
Fork 0

Irix fixes.

This commit is contained in:
david 2002-03-20 13:59:34 +00:00
parent 775094f9af
commit 25f68c0292
3 changed files with 9 additions and 3 deletions

View file

@ -30,15 +30,17 @@
*/
#include <simgear/compiler.h>
#include <iostream>
#include STL_IOSTREAM
#include <float.h>
#include <math.h>
#include <stdlib.h>
#include "linintp2.h"
#ifndef SG_HAVE_NATIVE_SGI_COMPILERS
SG_USING_NAMESPACE(std);
SG_USING_STD(cout);
#endif
//---------------------------------------------------------------------------
mgcLinInterp2D::mgcLinInterp2D (int _numPoints, double* x, double* y,

View file

@ -30,13 +30,15 @@
*/
#include <simgear/compiler.h>
#include <iostream>
#include STL_IOSTREAM
#include <math.h>
#include "sphrintp.h"
#ifndef SG_HAVE_NATIVE_SGI_COMPILERS
SG_USING_NAMESPACE(std);
SG_USING_STD(cout);
#endif
static const double PI = 4.0*atan(1.0);

View file

@ -33,13 +33,15 @@
#define SPHRINTP_H
#include <simgear/compiler.h>
#include <iostream>
#include STL_IOSTREAM
#include "linintp2.h"
#include <plib/sg.h>
#ifndef SG_HAVE_NATIVE_SGI_COMPILERS
SG_USING_NAMESPACE(std);
SG_USING_STD(cout);
#endif
class SphereInterpolate