]> git.mxchange.org Git - flightgear.git/blob - src/ATC/voice.hxx
don't set the callsign, but use the set one
[flightgear.git] / src / ATC / voice.hxx
1 // atc_voice.hxx
2 #include <simgear/constants.h>
3 #include <simgear/compiler.h>
4
5 #include STL_STRING
6 SG_USING_STD(string);
7
8 class FGVoice 
9 {
10 public:
11                 FGVoice();
12                 ~FGVoice();
13                         
14                 bool send_transcript( string trans, string refname, short repeat );
15                 
16 };
17 extern FGVoice *p_Voice;
18