mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 23:05:36 +08:00
INetwork builds up the ATIS as it is received, line-by-line, keeping this implementation detail more encapsulated
refs #81
This commit is contained in:
@@ -365,9 +365,9 @@ void Client::atcQueryReplyReceived(const BlackMisc::Aviation::CCallsign &callsig
|
||||
std::cout << "ATC_REPLY " << callsign << (isATC ? " yes" : " no") << std::endl;
|
||||
}
|
||||
|
||||
void Client::atisQueryReplyReceived(const BlackMisc::Aviation::CCallsign &callsign, const QString &data)
|
||||
void Client::atisQueryReplyReceived(const BlackMisc::Aviation::CCallsign &callsign, const BlackMisc::Aviation::CInformationMessage &atis)
|
||||
{
|
||||
std::cout << "ATIS_REPLY " << callsign << " " << data.toStdString() << std::endl;
|
||||
std::cout << "ATIS_REPLY " << callsign << " " << atis << std::endl;
|
||||
}
|
||||
|
||||
void Client::nameQueryReplyReceived(const BlackMisc::Aviation::CCallsign &callsign, const QString &realname)
|
||||
|
||||
Reference in New Issue
Block a user