FlightGear next
realwx_ctrl.hxx
Go to the documentation of this file.
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
29namespace Environment {
30
31class RealWxController : public SGSubsystem
32{
33public:
34 virtual ~RealWxController();
35
36 static RealWxController * createInstance( SGPropertyNode_ptr rootNode );
37};
38
39} // namespace
40#endif // _REALWX_CTRL_HXX
static RealWxController * createInstance(SGPropertyNode_ptr rootNode)