]> git.mxchange.org Git - flightgear.git/blob - src/Environment/ephemeris.hxx
Fix stray back-button in Qt launcher
[flightgear.git] / src / Environment / ephemeris.hxx
1 // ephemeris.hxx -- wrap SGEphemeris code in a subsystem
2 //
3 // Written by James Turner, started June 2010.
4 //
5 // Copyright (C) 2010  Curtis L. Olson  - http://www.flightgear.org/~curt
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20 //
21 // $Id$
22
23 #ifndef FG_ENVIRONMENT_EPHEMERIS_HXX
24 #define FG_ENVIRONMENT_EPHEMERIS_HXX
25
26 #include <simgear/structure/subsystem_mgr.hxx>
27
28 class SGEphemeris;
29 class SGPropertyNode;
30
31 /**
32  * Wrap SGEphemeris in a susbsytem/property interface
33  */
34 class Ephemeris : public SGSubsystem
35 {
36 public:
37
38         Ephemeris();
39         ~Ephemeris();           
40         
41         virtual void bind();
42         virtual void unbind();
43         virtual void update(double dt);
44         virtual void init();
45     virtual void shutdown();
46     virtual void postinit();
47
48     static const char* subsystemName() { return "ephemeris"; }
49
50     SGEphemeris* data();
51 private:
52   SGEphemeris* _impl;
53   SGPropertyNode* _latProp;
54 };
55
56 #endif // of FG_ENVIRONMENT_EPHEMERIS_HXX
57