1
0
Fork 0

Compile under MSVC9

This commit is contained in:
fredb 2009-08-08 12:43:32 +00:00 committed by Tim Moore
parent b65f0ae0dc
commit 71d7f043a8
3 changed files with 16 additions and 0 deletions

View file

@ -22,8 +22,14 @@
//
// $Id$
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include "FGButton.hxx"
#include <simgear/math/SGMath.hxx>
FGButton::FGButton ()
: is_repeatable(false),
interval_sec(0),

View file

@ -22,10 +22,16 @@
//
// $Id$
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include "FGCommonInput.hxx"
#include <Main/globals.hxx>
#include <Main/fg_os.hxx>
#include <simgear/math/SGMath.hxx>
void FGCommonInput::read_bindings (const SGPropertyNode * node, binding_list_t * binding_list, int modifiers, string & module )
{
SG_LOG(SG_INPUT, SG_DEBUG, "Reading all bindings");

View file

@ -22,6 +22,10 @@
//
// $Id$
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include "FGDeviceConfigurationMap.hxx"
#include <simgear/props/props_io.hxx>
#include <Main/globals.hxx>