1999-05-12 02:04:38 +00:00
|
|
|
/**************************************************************************
|
|
|
|
* cockpit.hxx -- cockpit defines and prototypes (initial draft)
|
|
|
|
*
|
|
|
|
* Written by Michele America, started September 1997.
|
|
|
|
*
|
|
|
|
* Copyright (C) 1997 Michele F. America - nomimarketing@mail.telepac.pt
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
2006-02-21 01:16:04 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
1999-05-12 02:04:38 +00:00
|
|
|
*
|
|
|
|
* $Id$
|
|
|
|
**************************************************************************/
|
1997-08-29 18:03:19 +00:00
|
|
|
|
|
|
|
|
1998-04-24 00:45:53 +00:00
|
|
|
#ifndef _COCKPIT_HXX
|
|
|
|
#define _COCKPIT_HXX
|
1998-01-22 02:59:23 +00:00
|
|
|
|
|
|
|
|
1998-07-13 21:00:45 +00:00
|
|
|
#ifndef __cplusplus
|
1998-04-24 00:45:53 +00:00
|
|
|
# error This library requires C++
|
1998-07-13 21:00:45 +00:00
|
|
|
#endif
|
1998-04-21 17:02:27 +00:00
|
|
|
|
2006-10-29 19:30:21 +00:00
|
|
|
#include <osg/State>
|
1998-06-27 16:47:53 +00:00
|
|
|
|
2006-10-29 19:30:21 +00:00
|
|
|
#include "Aircraft/aircraft.hxx"
|
1998-07-13 21:00:45 +00:00
|
|
|
#include "panel.hxx"
|
1998-04-21 17:02:27 +00:00
|
|
|
|
1998-05-11 18:13:10 +00:00
|
|
|
bool fgCockpitInit( fgAIRCRAFT *cur_aircraft );
|
2006-10-29 19:30:21 +00:00
|
|
|
void fgCockpitUpdate( osg::State* );
|
1997-08-29 18:03:19 +00:00
|
|
|
|
1999-05-12 02:04:38 +00:00
|
|
|
#endif /* _COCKPIT_HXX */
|