mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-08-12 20:55:39 +08:00
refs #411, some more DBus tests and some minor adjustments found in course of action
This commit is contained in:
committed by
Mathew Sutcliffe
parent
1b9878fdd3
commit
4aa5f8069e
@@ -300,6 +300,33 @@ namespace BlackMiscTest
|
||||
return altitude;
|
||||
}
|
||||
|
||||
/*
|
||||
* Ping user
|
||||
*/
|
||||
CUser Testservice::pingUser(const CUser &user)
|
||||
{
|
||||
qDebug() << "Pid:" << ServiceTool::getPid() << "ping user:" << user;
|
||||
return user;
|
||||
}
|
||||
|
||||
/*
|
||||
* Ping situation
|
||||
*/
|
||||
BlackMisc::Aviation::CAircraftSituation Testservice::pingSituation(const BlackMisc::Aviation::CAircraftSituation &situation)
|
||||
{
|
||||
qDebug() << "Pid:" << ServiceTool::getPid() << "ping situation:" << situation;
|
||||
return situation;
|
||||
}
|
||||
|
||||
/*
|
||||
* Ping transponder
|
||||
*/
|
||||
BlackMisc::Aviation::CTransponder Testservice::pingTransponder(const BlackMisc::Aviation::CTransponder &transponder)
|
||||
{
|
||||
qDebug() << "Pid:" << ServiceTool::getPid() << "ping transponder:" << transponder;
|
||||
return transponder;
|
||||
}
|
||||
|
||||
/*
|
||||
* Ping ATC station
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user