]> git.mxchange.org Git - flightgear.git/blob - utils/fgpanel/FGPanelProtocol.hxx
Fix Win32 build, hopefully.
[flightgear.git] / utils / fgpanel / FGPanelProtocol.hxx
1 //
2 //  Written and (c) Torsten Dreyer - Torsten(at)t3r_dot_de
3 //
4 //  This program is free software; you can redistribute it and/or
5 //  modify it under the terms of the GNU General Public License as
6 //  published by the Free Software Foundation; either version 2 of the
7 //  License, or (at your option) any later version.
8 // 
9 //  This program is distributed in the hope that it will be useful, but
10 //  WITHOUT ANY WARRANTY; without even the implied warranty of
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 //  General Public License for more details.
13 //
14 //  You should have received a copy of the GNU General Public License
15 //  along with this program; if not, write to the Free Software
16 //  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17 //
18 #ifndef __FGPANELPROTOCOL_HXX
19 #define __FGPANELPROTOCOL_HXX
20 #include <simgear/structure/subsystem_mgr.hxx>
21 #include <simgear/props/props.hxx>
22 #include <simgear/io/iochannel.hxx>
23 class PropertySetter;
24
25 typedef std::vector<PropertySetter*> PropertySetterVector;
26 class FGPanelProtocol : public SGSubsystem {
27 public:
28   FGPanelProtocol( SGPropertyNode_ptr root );
29   virtual ~FGPanelProtocol();
30   virtual void init();
31   virtual void reinit();
32   virtual void update( double dt );
33
34 protected:
35
36 private:
37   SGPropertyNode_ptr root;
38   SGIOChannel * io;
39   PropertySetterVector propertySetterVector;
40 };
41 #endif