1
0
Fork 0

Fix build on Windows

Add missing includes.
Thanks to Alan Teeder
This commit is contained in:
Torsten Dreyer 2010-06-27 15:02:59 +02:00
parent 3c60bf6511
commit f6ea868804
3 changed files with 13 additions and 0 deletions

View file

@ -21,6 +21,11 @@
#ifndef _INPUTVALUE_HXX
#define _INPUTVALUE_HXX 1
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <simgear/structure/SGExpression.hxx>
namespace FGXMLAutopilot {

View file

@ -23,6 +23,10 @@
#include "digitalcomponent.hxx"
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
namespace FGXMLAutopilot {
/**

View file

@ -1,6 +1,10 @@
#ifndef FG_FLIGHT_PROPERTIES_HXX
#define FG_FLIGHT_PROPERTIES_HXX
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <memory>
#include <simgear/math/SGMathFwd.hxx> // for SGVec3d
#include <simgear/math/SGMisc.hxx>