]> git.mxchange.org Git - flightgear.git/blob - src/ATC/atis.hxx
Added some stubs in the flightgear main code to eventually add a full, FGSubsystems...
[flightgear.git] / src / ATC / atis.hxx
1 /* -*- Mode: C++ -*- *****************************************************
2  * atic.hxx
3  * Written by Durk Talsma. Started August 1, 2010; based on earlier work
4  * by David C. Luff
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License as
8  * published by the Free Software Foundation; either version 2 of the
9  * License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful, but
12  * WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19  *
20  *
21  **************************************************************************/
22
23 #ifndef _ATIS_HXX_
24 #define _ATIS_HXX_
25
26 #include <simgear/structure/subsystem_mgr.hxx>
27
28 class FGAtisManager : public SGSubsystem
29 {
30 private:
31   
32 public:
33   FGAtisManager();
34   ~FGAtisManager();
35   void init();
36   void update(double time);    
37 };
38   
39 #endif // _ATIS_HXX_