2001-06-01 17:52:17 +00:00
|
|
|
// fg_commands.hxx - built-in commands for FlightGear.
|
|
|
|
|
|
|
|
#ifndef __FG_COMMANDS_HXX
|
|
|
|
#define __FG_COMMANDS_HXX
|
|
|
|
|
2006-02-21 01:16:04 +00:00
|
|
|
#ifndef __cplusplus
|
2001-06-01 17:52:17 +00:00
|
|
|
# error This library requires C++
|
2006-02-21 01:16:04 +00:00
|
|
|
#endif
|
2001-06-01 17:52:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
|
|
|
#endif
|
|
|
|
|
2003-09-24 17:20:55 +00:00
|
|
|
#include <simgear/structure/commands.hxx>
|
2003-05-06 23:46:24 +00:00
|
|
|
#include <simgear/props/props.hxx>
|
2001-06-01 17:52:17 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize the built-in commands.
|
|
|
|
*/
|
|
|
|
void fgInitCommands ();
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// end of fg_commands.hxx
|