]> git.mxchange.org Git - flightgear.git/blob - src/ATC/ATC.cxx
Attached is a reasonably large patch to add a proper ATC
[flightgear.git] / src / ATC / ATC.cxx
1 // Implementation of FGATC - ATC subsystem abstract base class.
2 // Nothing in here should ever get called.
3 //
4 // Written by David Luff, started February 2002.
5 //
6 // Copyright (C) 2002  David C Luff - david.luff@nottingham.ac.uk
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., 675 Mass Ave, Cambridge, MA 02139, USA.
21
22 #include "ATC.hxx"
23
24 FGATC::~FGATC() {
25 }
26
27 void FGATC::Update() {
28 }
29
30 void FGATC::SetDisplay() {
31 }
32
33 void FGATC::SetNoDisplay() {
34 }
35
36 const char* FGATC::GetIdent() {
37     return("Error - base class function called in FGATC...");
38 }
39
40 atc_type FGATC::GetType() {
41     return INVALID;
42 }