mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 14:55:36 +08:00
13 lines
220 B
C++
13 lines
220 B
C++
#include "atcmanager.h"
|
|
|
|
CAtcManager::CAtcManager(QObject *parent) :
|
|
QObject(parent)
|
|
{
|
|
m_atcList << "EDDM_N_TWR" << "KJFK_GND" << "LOVV_CTR";
|
|
}
|
|
|
|
QStringList CAtcManager::atcList() const
|
|
{
|
|
return m_atcList;
|
|
}
|