]> git.mxchange.org Git - flightgear.git/blob - src/Environment/realwx_ctrl.hxx
Fix stray back-button in Qt launcher
[flightgear.git] / src / Environment / realwx_ctrl.hxx
1 // realwx_ctrl.cxx -- Process real weather data
2 //
3 // Written by David Megginson, started May 2002.
4 // Rewritten by Torsten Dreyer, August 2010
5 //
6 // Copyright (C) 2002  David Megginson - david@megginson.com
7 //
8 // This program is free software; you can redistribute it and/or
9 // modify it under the terms of the GNU General Public License as
10 // published by the Free Software Foundation; either version 2 of the
11 // License, or (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful, but
14 // WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 // General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the Free Software
20 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
21 //
22
23 #ifndef _REALWX_CTRL_HXX
24 #define _REALWX_CTRL_HXX
25
26 #include <simgear/structure/subsystem_mgr.hxx>
27 #include <simgear/props/props.hxx>
28 namespace Environment {
29 class RealWxController : public SGSubsystem
30 {
31 public:
32     virtual ~RealWxController();
33     
34         static RealWxController * createInstance( SGPropertyNode_ptr rootNode );
35 };
36
37 } // namespace
38 #endif // _REALWX_CTRL_HXX