dcb95d131b
- coplied license headers from h(xx) files to respective c(xx) files - removed trailing spaces - fixe $Id$ - fixed typos
39 lines
1.4 KiB
C++
39 lines
1.4 KiB
C++
/**************************************************************************
|
|
* mars.hxx
|
|
* Written by Durk Talsma. Originally started October 1997, for distribution
|
|
* with the FlightGear project. Version 2 was written in August and
|
|
* September 1998. This code is based upon algorithms and data kindly
|
|
* provided by Mr. Paul Schlyter. (pausch@saaf.se).
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Library 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
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*
|
|
* $Id$
|
|
**************************************************************************/
|
|
#ifndef _MARS_HXX_
|
|
#define _MARS_HXX_
|
|
|
|
#include <simgear/ephemeris/celestialBody.hxx>
|
|
#include <simgear/ephemeris/star.hxx>
|
|
|
|
class Mars : public CelestialBody
|
|
{
|
|
public:
|
|
Mars ( double mjd );
|
|
Mars ();
|
|
void updatePosition(double mjd, Star *ourSun);
|
|
};
|
|
|
|
#endif // _MARS_HXX_
|