mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 14:55:36 +08:00
17 lines
265 B
C++
17 lines
265 B
C++
#include "planemanager.h"
|
|
|
|
CPlaneManager::CPlaneManager(QObject *parent) :
|
|
QObject(parent)
|
|
{
|
|
m_pilotsList << "DLH123" << "BER456" << "SWS789";
|
|
}
|
|
|
|
CPlaneManager::~CPlaneManager()
|
|
{
|
|
}
|
|
|
|
QStringList CPlaneManager::pilotList() const
|
|
{
|
|
return m_pilotsList;
|
|
}
|