e356e691b2
- restrict heliports / seaports by aircraft type - prioritise by runway length - clean up airport label names
15 lines
198 B
C++
15 lines
198 B
C++
#ifndef QTGUI_FWD_H
|
|
#define QTGUI_FWD_H
|
|
|
|
enum LauncherAircraftType
|
|
{
|
|
Airplane = 0,
|
|
Seaplane,
|
|
Helicopter,
|
|
Airship
|
|
};
|
|
|
|
extern QString fixNavaidName(QString s);
|
|
|
|
#endif // QTGUI_FWD_H
|
|
|