1998-10-17 01:33:52 +00:00
|
|
|
//*************************************************************************
|
|
|
|
// aircraft.hxx -- define shared aircraft parameters
|
|
|
|
//
|
|
|
|
// Written by Curtis Olson, started May 1997.
|
|
|
|
//
|
2004-11-19 22:10:41 +00:00
|
|
|
// Copyright (C) 1997 Curtis L. Olson - http://www.flightgear.org/~curt
|
1998-10-17 01:33:52 +00:00
|
|
|
//
|
|
|
|
// 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.
|
1998-10-17 01:33:52 +00:00
|
|
|
//
|
|
|
|
// $Id$
|
|
|
|
//*************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _AIRCRAFT_HXX
|
|
|
|
#define _AIRCRAFT_HXX
|
2008-07-29 08:27:48 +00:00
|
|
|
|
|
|
|
class SGPropertyNode;
|
1998-04-21 17:02:27 +00:00
|
|
|
|
2003-08-11 17:34:16 +00:00
|
|
|
bool fgLoadAircraft (const SGPropertyNode * arg);
|
1998-10-17 01:33:52 +00:00
|
|
|
|
2003-03-29 15:04:52 +00:00
|
|
|
#endif // _AIRCRAFT_HXX
|
1998-10-17 01:33:52 +00:00
|
|
|
|