swift-project / pilotclient

Cross-platform cross-simulator pilot client for virtual air traffic networks
https://swift-project.org
GNU General Public License v3.0
94 stars 27 forks source link

Doxygen warnings on Ubuntu 20 #188

Closed oktal3700 closed 1 year ago

oktal3700 commented 1 year ago

Upon upgrading the GitHub Actions runner to Ubuntu 20 (Ubuntu 18 is deprecated) there are many new Doxygen warnings.

Most of the warnings appear to be related to https://github.com/doxygen/doxygen/issues/1601

//! @{
//! Same documentation for both members.
void func1InGroup1();
void func2InGroup1();
//! @}

//! \name Group2
//! Description of group 2.
//! @{
void func1InGroup2();
void func2InGroup2();
//! @}

image

When using @{...@} to group members, the group documentation must be before the @{

When using @{...@} to copy documentation among members, the documentation must be after the @}

This is fine.

oktal3700 commented 1 year ago
warning: ignoring unsupported tag 'HTML_FORMULA_FORMAT' at line 1536, file docs/Doxyfile.qmake
src/blackmisc/json.h:42: warning: Member operator>>(const QJsonValue &json, int &value) (function) of file json.h is not documented.
src/blackmisc/json.h:43: warning: Member operator>>(const QJsonValue &json, qlonglong &value) (function) of file json.h is not documented.
src/blackmisc/json.h:44: warning: Member operator>>(const QJsonValue &json, qulonglong &value) (function) of file json.h is not documented.
src/blackmisc/json.h:45: warning: Member operator>>(const QJsonValue &json, uint &value) (function) of file json.h is not documented.
src/blackmisc/json.h:46: warning: Member operator>>(const QJsonValue &json, qint16 &value) (function) of file json.h is not documented.
src/blackmisc/json.h:47: warning: Member operator>>(const QJsonValue &json, QString &value) (function) of file json.h is not documented.
src/blackmisc/json.h:48: warning: Member operator>>(const QJsonValue &json, QStringList &value) (function) of file json.h is not documented.
src/blackmisc/json.h:49: warning: Member operator>>(const QJsonValue &json, std::string &value) (function) of file json.h is not documented.
src/blackmisc/json.h:50: warning: Member operator>>(const QJsonValue &json, double &value) (function) of file json.h is not documented.
src/blackmisc/json.h:51: warning: Member operator>>(const QJsonValue &json, bool &value) (function) of file json.h is not documented.
src/blackmisc/json.h:52: warning: Member operator>>(const QJsonValue &json, QDateTime &value) (function) of file json.h is not documented.
src/blackmisc/json.h:53: warning: Member operator>>(const QJsonValue &json, QPixmap &value) (function) of file json.h is not documented.
src/blackmisc/json.h:54: warning: Member operator>>(const QJsonValue &json, QByteArray &value) (function) of file json.h is not documented.
src/blackmisc/json.h:55: warning: Member operator>>(QJsonValueRef json, int &value) (function) of file json.h is not documented.
src/blackmisc/json.h:56: warning: Member operator>>(QJsonValueRef json, qlonglong &value) (function) of file json.h is not documented.
src/blackmisc/json.h:57: warning: Member operator>>(QJsonValueRef json, qulonglong &value) (function) of file json.h is not documented.
src/blackmisc/json.h:58: warning: Member operator>>(QJsonValueRef json, uint &value) (function) of file json.h is not documented.
src/blackmisc/json.h:59: warning: Member operator>>(QJsonValueRef json, qint16 &value) (function) of file json.h is not documented.
src/blackmisc/json.h:60: warning: Member operator>>(QJsonValueRef json, QString &value) (function) of file json.h is not documented.
src/blackmisc/json.h:61: warning: Member operator>>(QJsonValueRef json, std::string &value) (function) of file json.h is not documented.
src/blackmisc/json.h:62: warning: Member operator>>(QJsonValueRef json, QStringList &value) (function) of file json.h is not documented.
src/blackmisc/json.h:63: warning: Member operator>>(QJsonValueRef json, double &value) (function) of file json.h is not documented.
src/blackmisc/json.h:64: warning: Member operator>>(QJsonValueRef json, bool &value) (function) of file json.h is not documented.
src/blackmisc/json.h:65: warning: Member operator>>(QJsonValueRef json, QDateTime &value) (function) of file json.h is not documented.
src/blackmisc/json.h:66: warning: Member operator>>(QJsonValueRef json, QPixmap &value) (function) of file json.h is not documented.
src/blackmisc/json.h:67: warning: Member operator>>(QJsonValueRef json, QByteArray &value) (function) of file json.h is not documented.
src/blackmisc/json.h:166: warning: Member operator<<(QJsonArray &json, const int value) (function) of file json.h is not documented.
src/blackmisc/json.h:167: warning: Member operator<<(QJsonArray &json, const std::pair< QString, qint16 > &value) (function) of file json.h is not documented.
src/blackmisc/json.h:168: warning: Member operator<<(QJsonArray &json, const qlonglong value) (function) of file json.h is not documented.
src/blackmisc/json.h:169: warning: Member operator<<(QJsonArray &json, const uint value) (function) of file json.h is not documented.
src/blackmisc/json.h:170: warning: Member operator<<(QJsonArray &json, const qulonglong value) (function) of file json.h is not documented.
src/blackmisc/json.h:171: warning: Member operator<<(QJsonArray &json, const QString &value) (function) of file json.h is not documented.
src/blackmisc/json.h:172: warning: Member operator<<(QJsonArray &json, const std::string &value) (function) of file json.h is not documented.
src/blackmisc/json.h:173: warning: Member operator<<(QJsonArray &json, const double value) (function) of file json.h is not documented.
src/blackmisc/json.h:174: warning: Member operator<<(QJsonArray &json, const bool value) (function) of file json.h is not documented.
src/blackmisc/json.h:175: warning: Member operator<<(QJsonArray &json, const QDateTime &value) (function) of file json.h is not documented.
src/blackmisc/json.h:176: warning: Member operator<<(QJsonArray &json, const QPixmap &value) (function) of file json.h is not documented.
src/blackmisc/json.h:177: warning: Member operator<<(QJsonArray &json, const QByteArray &value) (function) of file json.h is not documented.
src/blackmisc/json.h:183: warning: Member operator<<(QJsonObject &json, const std::pair< QString, const int & > &value) (function) of file json.h is not documented.
src/blackmisc/json.h:184: warning: Member operator<<(QJsonObject &json, const std::pair< QString, const qint16 & > &value) (function) of file json.h is not documented.
src/blackmisc/json.h:185: warning: Member operator<<(QJsonObject &json, const std::pair< QString, const qlonglong & > &value) (function) of file json.h is not documented.
src/blackmisc/json.h:186: warning: Member operator<<(QJsonObject &json, const std::pair< QString, const uint & > &value) (function) of file json.h is not documented.
src/blackmisc/json.h:187: warning: Member operator<<(QJsonObject &json, const std::pair< QString, const qulonglong & > &value) (function) of file json.h is not documented.
src/blackmisc/json.h:188: warning: Member operator<<(QJsonObject &json, const std::pair< QString, const QString & > &value) (function) of file json.h is not documented.
src/blackmisc/json.h:189: warning: Member operator<<(QJsonObject &json, const std::pair< QString, const std::string & > &value) (function) of file json.h is not documented.
src/blackmisc/json.h:190: warning: Member operator<<(QJsonObject &json, const std::pair< QString, const QStringList & > &value) (function) of file json.h is not documented.
src/blackmisc/json.h:191: warning: Member operator<<(QJsonObject &json, const std::pair< QString, const double & > &value) (function) of file json.h is not documented.
src/blackmisc/json.h:192: warning: Member operator<<(QJsonObject &json, const std::pair< QString, const bool & > &value) (function) of file json.h is not documented.
src/blackmisc/json.h:193: warning: Member operator<<(QJsonObject &json, const std::pair< QString, const QDateTime & > &value) (function) of file json.h is not documented.
src/blackmisc/json.h:194: warning: Member operator<<(QJsonObject &json, const std::pair< QString, const QPixmap & > &value) (function) of file json.h is not documented.
src/blackmisc/json.h:195: warning: Member operator<<(QJsonObject &json, const std::pair< QString, const QByteArray & > &value) (function) of file json.h is not documented.
src/blackmisc/json.h:196: warning: Member operator<<(QJsonObject &json, const std::pair< BlackMisc::CExplicitLatin1String, const int & > &value) (function) of file json.h is not documented.
src/blackmisc/json.h:197: warning: Member operator<<(QJsonObject &json, const std::pair< BlackMisc::CExplicitLatin1String, const qint16 & > &value) (function) of file json.h is not documented.
src/blackmisc/json.h:198: warning: Member operator<<(QJsonObject &json, const std::pair< BlackMisc::CExplicitLatin1String, const qlonglong & > &value) (function) of file json.h is not documented.
src/blackmisc/json.h:199: warning: Member operator<<(QJsonObject &json, const std::pair< BlackMisc::CExplicitLatin1String, const uint & > &value) (function) of file json.h is not documented.
src/blackmisc/json.h:200: warning: Member operator<<(QJsonObject &json, const std::pair< BlackMisc::CExplicitLatin1String, const qulonglong & > &value) (function) of file json.h is not documented.
src/blackmisc/json.h:201: warning: Member operator<<(QJsonObject &json, const std::pair< BlackMisc::CExplicitLatin1String, const QString & > &value) (function) of file json.h is not documented.
src/blackmisc/json.h:202: warning: Member operator<<(QJsonObject &json, const std::pair< BlackMisc::CExplicitLatin1String, const std::string & > &value) (function) of file json.h is not documented.
src/blackmisc/json.h:203: warning: Member operator<<(QJsonObject &json, const std::pair< BlackMisc::CExplicitLatin1String, const QStringList & > &value) (function) of file json.h is not documented.
src/blackmisc/json.h:204: warning: Member operator<<(QJsonObject &json, const std::pair< BlackMisc::CExplicitLatin1String, const double & > &value) (function) of file json.h is not documented.
src/blackmisc/json.h:205: warning: Member operator<<(QJsonObject &json, const std::pair< BlackMisc::CExplicitLatin1String, const bool & > &value) (function) of file json.h is not documented.
src/blackmisc/json.h:206: warning: Member operator<<(QJsonObject &json, const std::pair< BlackMisc::CExplicitLatin1String, const QDateTime & > &value) (function) of file json.h is not documented.
src/blackmisc/json.h:207: warning: Member operator<<(QJsonObject &json, const std::pair< BlackMisc::CExplicitLatin1String, const QPixmap & > &value) (function) of file json.h is not documented.
src/blackmisc/json.h:208: warning: Member operator<<(QJsonObject &json, const std::pair< BlackMisc::CExplicitLatin1String, const QByteArray & > &value) (function) of file json.h is not documented.
src/blackmisc/json.h:214: warning: Member operator<<(QDataStream &s, const std::string &v) (function) of file json.h is not documented.
src/blackmisc/json.h:215: warning: Member operator>>(QDataStream &s, std::string &v) (function) of file json.h is not documented.
src/swiftdata/swiftdata.h:51: warning: Member closeEvent(QCloseEvent *event) (function) of class CSwiftData is not documented.
src/swiftguistandard/swiftguistd.h:97: warning: Member mouseMoveEvent(QMouseEvent *event) (function) of class SwiftGuiStd is not documented.
src/swiftguistandard/swiftguistd.h:98: warning: Member mousePressEvent(QMouseEvent *event) (function) of class SwiftGuiStd is not documented.
src/swiftguistandard/swiftguistd.h:99: warning: Member mouseReleaseEvent(QMouseEvent *event) (function) of class SwiftGuiStd is not documented.
src/swiftguistandard/swiftguistd.h:100: warning: Member closeEvent(QCloseEvent *event) (function) of class SwiftGuiStd is not documented.
src/swiftguistandard/swiftguistd.h:101: warning: Member changeEvent(QEvent *event) (function) of class SwiftGuiStd is not documented.
src/blackcore/context/contextapplicationimpl.h:51: warning: Member changeSettings(const BlackMisc::CValueCachePacket &settings, const BlackMisc::CIdentifier &origin) (slot) of class BlackCore::Context::CContextApplication is not documented.
src/blackcore/context/contextapplicationimpl.h:52: warning: Member getAllSettings() const (slot) of class BlackCore::Context::CContextApplication is not documented.
src/blackcore/context/contextapplicationimpl.h:53: warning: Member getUnsavedSettingsKeys() const (slot) of class BlackCore::Context::CContextApplication is not documented.
src/blackcore/context/contextapplicationimpl.h:54: warning: Member getUnsavedSettingsKeysDescribed() const (slot) of class BlackCore::Context::CContextApplication is not documented.
src/blackcore/context/contextapplicationimpl.h:55: warning: Member synchronizeLocalSettings() (slot) of class BlackCore::Context::CContextApplication is not documented.
src/blackcore/context/contextapplicationimpl.h:56: warning: Member saveSettings(const QString &keyPrefix={}) (slot) of class BlackCore::Context::CContextApplication is not documented.
src/blackcore/context/contextapplicationimpl.h:57: warning: Member saveSettingsByKey(const QStringList &keys) (slot) of class BlackCore::Context::CContextApplication is not documented.
src/blackcore/context/contextapplicationimpl.h:58: warning: Member loadSettings() (slot) of class BlackCore::Context::CContextApplication is not documented.
src/blackcore/context/contextapplicationimpl.h:59: warning: Member registerHotkeyActions(const QStringList &actions, const BlackMisc::CIdentifier &origin) (slot) of class BlackCore::Context::CContextApplication is not documented.
src/blackcore/context/contextapplicationimpl.h:60: warning: Member callHotkeyActionRemotely(const QString &action, bool argument, const BlackMisc::CIdentifier &origin) (slot) of class BlackCore::Context::CContextApplication is not documented.
src/blackcore/context/contextapplicationimpl.h:61: warning: Member writeToFile(const QString &fileName, const QString &content) (slot) of class BlackCore::Context::CContextApplication is not documented.
src/blackcore/context/contextapplicationimpl.h:62: warning: Member registerApplication(const BlackMisc::CIdentifier &application) (slot) of class BlackCore::Context::CContextApplication is not documented.
src/blackcore/context/contextapplicationimpl.h:63: warning: Member unregisterApplication(const BlackMisc::CIdentifier &application) (slot) of class BlackCore::Context::CContextApplication is not documented.
src/blackcore/context/contextapplicationimpl.h:64: warning: Member getRegisteredApplications() const (slot) of class BlackCore::Context::CContextApplication is not documented.
src/blackcore/context/contextapplicationimpl.h:65: warning: Member getApplicationIdentifier() const (slot) of class BlackCore::Context::CContextApplication is not documented.
src/blackcore/context/contextapplicationimpl.h:66: warning: Member readFromFile(const QString &fileName) const (slot) of class BlackCore::Context::CContextApplication is not documented.
src/blackcore/context/contextapplicationimpl.h:67: warning: Member removeFile(const QString &fileName) (slot) of class BlackCore::Context::CContextApplication is not documented.
src/blackcore/context/contextapplicationimpl.h:68: warning: Member existsFile(const QString &fileName) const (slot) of class BlackCore::Context::CContextApplication is not documented.
src/blackcore/context/contextapplicationimpl.h:69: warning: Member dotCommandsHtmlHelp() const (slot) of class BlackCore::Context::CContextApplication is not documented.
src/blackcore/context/contextapplicationproxy.h:54: warning: Member changeSettings(const BlackMisc::CValueCachePacket &settings, const BlackMisc::CIdentifier &origin) (slot) of class BlackCore::Context::CContextApplicationProxy is not documented.
src/blackcore/context/contextapplicationproxy.h:55: warning: Member getAllSettings() const (slot) of class BlackCore::Context::CContextApplicationProxy is not documented.
src/blackcore/context/contextapplicationproxy.h:56: warning: Member getUnsavedSettingsKeys() const (slot) of class BlackCore::Context::CContextApplicationProxy is not documented.
src/blackcore/context/contextapplicationproxy.h:57: warning: Member getUnsavedSettingsKeysDescribed() const (slot) of class BlackCore::Context::CContextApplicationProxy is not documented.
src/blackcore/context/contextapplicationproxy.h:58: warning: Member synchronizeLocalSettings() (slot) of class BlackCore::Context::CContextApplicationProxy is not documented.
src/blackcore/context/contextapplicationproxy.h:59: warning: Member saveSettings(const QString &keyPrefix={}) (slot) of class BlackCore::Context::CContextApplicationProxy is not documented.
src/blackcore/context/contextapplicationproxy.h:60: warning: Member saveSettingsByKey(const QStringList &keys) (slot) of class BlackCore::Context::CContextApplicationProxy is not documented.
src/blackcore/context/contextapplicationproxy.h:61: warning: Member loadSettings() (slot) of class BlackCore::Context::CContextApplicationProxy is not documented.
src/blackcore/context/contextapplicationproxy.h:62: warning: Member registerHotkeyActions(const QStringList &actions, const BlackMisc::CIdentifier &origin) (slot) of class BlackCore::Context::CContextApplicationProxy is not documented.
src/blackcore/context/contextapplicationproxy.h:63: warning: Member callHotkeyActionRemotely(const QString &action, bool argument, const BlackMisc::CIdentifier &origin) (slot) of class BlackCore::Context::CContextApplicationProxy is not documented.
src/blackcore/context/contextapplicationproxy.h:64: warning: Member registerApplication(const BlackMisc::CIdentifier &application) (slot) of class BlackCore::Context::CContextApplicationProxy is not documented.
src/blackcore/context/contextapplicationproxy.h:65: warning: Member unregisterApplication(const BlackMisc::CIdentifier &application) (slot) of class BlackCore::Context::CContextApplicationProxy is not documented.
src/blackcore/context/contextapplicationproxy.h:66: warning: Member getRegisteredApplications() const (slot) of class BlackCore::Context::CContextApplicationProxy is not documented.
src/blackcore/context/contextapplicationproxy.h:67: warning: Member getApplicationIdentifier() const (slot) of class BlackCore::Context::CContextApplicationProxy is not documented.
src/blackcore/context/contextapplicationproxy.h:68: warning: Member writeToFile(const QString &fileName, const QString &content) (slot) of class BlackCore::Context::CContextApplicationProxy is not documented.
src/blackcore/context/contextapplicationproxy.h:69: warning: Member readFromFile(const QString &fileName) const (slot) of class BlackCore::Context::CContextApplicationProxy is not documented.
src/blackcore/context/contextapplicationproxy.h:70: warning: Member removeFile(const QString &fileName) (slot) of class BlackCore::Context::CContextApplicationProxy is not documented.
src/blackcore/context/contextapplicationproxy.h:71: warning: Member existsFile(const QString &fileName) const (slot) of class BlackCore::Context::CContextApplicationProxy is not documented.
src/blackcore/context/contextapplicationproxy.h:72: warning: Member dotCommandsHtmlHelp() const (slot) of class BlackCore::Context::CContextApplicationProxy is not documented.
src/blackcore/context/contextaudioimpl.h:48: warning: Member getRegisteredDevices() const (slot) of class BlackCore::Context::CContextAudio is not documented.
src/blackcore/context/contextaudioimpl.h:49: warning: Member registerDevices(const BlackMisc::Audio::CAudioDeviceInfoList &devices) (slot) of class BlackCore::Context::CContextAudio is not documented.
src/blackcore/context/contextaudioimpl.h:50: warning: Member unRegisterDevices(const BlackMisc::Audio::CAudioDeviceInfoList &devices) (slot) of class BlackCore::Context::CContextAudio is not documented.
src/blackcore/context/contextaudioimpl.h:51: warning: Member unRegisterDevicesFor(const BlackMisc::CIdentifier &identifier) (slot) of class BlackCore::Context::CContextAudio is not documented.
src/blackcore/context/contextaudioimpl.h:52: warning: Member registerAudioCallsign(const BlackMisc::Aviation::CCallsign &callsign, const BlackMisc::CIdentifier &identifier) (slot) of class BlackCore::Context::CContextAudio is not documented.
src/blackcore/context/contextaudioimpl.h:53: warning: Member unRegisterAudioCallsign(const BlackMisc::Aviation::CCallsign &callsign, const BlackMisc::CIdentifier &identifier) (slot) of class BlackCore::Context::CContextAudio is not documented.
src/blackcore/context/contextaudioimpl.h:54: warning: Member hasRegisteredAudioCallsign(const BlackMisc::Aviation::CCallsign &callsign) const (slot) of class BlackCore::Context::CContextAudio is not documented.
src/blackcore/context/contextnetworkimpl.h:169: warning: Member updateAircraftEnabled(const BlackMisc::Aviation::CCallsign &callsign, bool enabledForRendering) (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:170: warning: Member updateAircraftModel(const BlackMisc::Aviation::CCallsign &callsign, const BlackMisc::Simulation::CAircraftModel &model, const BlackMisc::CIdentifier &originator) (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:171: warning: Member updateAircraftNetworkModel(const BlackMisc::Aviation::CCallsign &callsign, const BlackMisc::Simulation::CAircraftModel &model, const BlackMisc::CIdentifier &originator) (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:172: warning: Member updateFastPositionEnabled(const BlackMisc::Aviation::CCallsign &callsign, bool enableFastPositonUpdates) (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:173: warning: Member updateAircraftSupportingGndFLag(const BlackMisc::Aviation::CCallsign &callsign, bool supportGndFlag) (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:174: warning: Member enableReverseLookupMessages(BlackMisc::Simulation::ReverseLookupLogging enable) (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:177: warning: Member setAircraftEnabledFlag(const BlackMisc::Aviation::CCallsign &callsign, bool enabledForRendering) (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:178: warning: Member reInitializeAllAircraft() (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:179: warning: Member updateCG(const BlackMisc::Aviation::CCallsign &callsign, const BlackMisc::PhysicalQuantities::CLength &cg) (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:180: warning: Member updateCGForModel(const QString &modelString, const BlackMisc::PhysicalQuantities::CLength &cg) (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:181: warning: Member updateCGAndModelString(const BlackMisc::Aviation::CCallsign &callsign, const BlackMisc::PhysicalQuantities::CLength &cg, const QString &modelString) (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:182: warning: Member getAircraftInRange() const (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:183: warning: Member getAircraftInRangeCallsigns() const (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:184: warning: Member getAircraftInRangeCount() const (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:185: warning: Member isAircraftInRange(const BlackMisc::Aviation::CCallsign &callsign) const (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:186: warning: Member isVtolAircraft(const BlackMisc::Aviation::CCallsign &callsign) const (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:187: warning: Member getAircraftInRangeForCallsign(const BlackMisc::Aviation::CCallsign &callsign) const (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:188: warning: Member getAircraftInRangeModelForCallsign(const BlackMisc::Aviation::CCallsign &callsign) const (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:189: warning: Member getReverseLookupMessages(const BlackMisc::Aviation::CCallsign &callsign) const (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:190: warning: Member isReverseLookupMessagesEnabled() const (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:191: warning: Member getAircraftPartsHistory(const BlackMisc::Aviation::CCallsign &callsign) const (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:192: warning: Member getRemoteAircraftParts(const BlackMisc::Aviation::CCallsign &callsign) const (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:193: warning: Member getRemoteAircraftSupportingPartsCount() const (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:194: warning: Member isAircraftPartsHistoryEnabled() const (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:195: warning: Member isRemoteAircraftSupportingParts(const BlackMisc::Aviation::CCallsign &callsign) const (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:196: warning: Member enableAircraftPartsHistory(bool enabled) (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:197: warning: Member aircraftSituationsAdded() const (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:198: warning: Member aircraftPartsAdded() const (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:199: warning: Member situationsLastModified(const BlackMisc::Aviation::CCallsign &callsign) const (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:200: warning: Member partsLastModified(const BlackMisc::Aviation::CCallsign &callsign) const (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:201: warning: Member getNetworkStatistics(bool reset, const QString &separator) (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:202: warning: Member setNetworkStatisticsEnable(bool enabled) (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:203: warning: Member testAddAltitudeOffset(const BlackMisc::Aviation::CCallsign &callsign, const BlackMisc::PhysicalQuantities::CLength &offset=BlackMisc::PhysicalQuantities::CLength::null()) (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:204: warning: Member getNetworkPresetValues() const (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:205: warning: Member getPartnerCallsign() const (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:210: warning: Member getClients() const (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:211: warning: Member getClientsForCallsigns(const BlackMisc::Aviation::CCallsignSet &callsigns) const (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:212: warning: Member setOtherClient(const BlackMisc::Network::CClient &client) (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:255: warning: Member requestAtcBookingsUpdate() const (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:256: warning: Member getAtcStationsBooked(bool recalculateDistance) const (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:257: warning: Member getAtcStationsOnline(bool recalculateDistance) const (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:258: warning: Member getClosestAtcStationsOnline(int number) const (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:259: warning: Member getOnlineStationForCallsign(const BlackMisc::Aviation::CCallsign &callsign) const (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:260: warning: Member getOnlineStationsForFrequency(const BlackMisc::PhysicalQuantities::CFrequency &frequency, BlackMisc::Aviation::CComSystem::ChannelSpacing channelSpacing) const (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:261: warning: Member isOnlineStation(const BlackMisc::Aviation::CCallsign &callsign) const (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:262: warning: Member connectToNetwork(const BlackMisc::Network::CServer &server, const QString &extraLiveryString, bool sendLivery, const QString &extraModelString, bool sendModelString, const BlackMisc::Aviation::CCallsign &partnerCallsign, BlackMisc::Network::CLoginMode mode) (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:263: warning: Member getConnectedServer() const (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:264: warning: Member getLoginMode() const (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:265: warning: Member disconnectFromNetwork() (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:266: warning: Member isConnected() const (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:267: warning: Member sendTextMessages(const BlackMisc::Network::CTextMessageList &textMessages) (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:268: warning: Member sendFlightPlan(const BlackMisc::Aviation::CFlightPlan &flightPlan) (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:269: warning: Member loadFlightPlanFromNetwork(const BlackMisc::Aviation::CCallsign &callsign) const (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:270: warning: Member getMetarForAirport(const BlackMisc::Aviation::CAirportIcaoCode &airportIcaoCode) const (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:271: warning: Member getSelectedAtcStations() const (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:272: warning: Member getUsers() const (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:273: warning: Member getUsersForCallsigns(const BlackMisc::Aviation::CCallsignSet &callsigns) const (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:274: warning: Member getUserForCallsign(const BlackMisc::Aviation::CCallsign &callsign) const (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:275: warning: Member getVatsimFsdServers() const (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:276: warning: Member getVatsimVoiceServers() const (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:277: warning: Member requestAircraftDataUpdates() (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:278: warning: Member requestAtisUpdates() (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:279: warning: Member setFastPositionEnabledCallsigns(BlackMisc::Aviation::CCallsignSet &callsigns) (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:280: warning: Member getFastPositionEnabledCallsigns() const (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:281: warning: Member getLibraryInfo(bool detailed) const (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:282: warning: Member testCreateDummyOnlineAtcStations(int number) (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:283: warning: Member testAddAircraftParts(const BlackMisc::Aviation::CCallsign &callsign, const BlackMisc::Aviation::CAircraftParts &parts, bool incremental) (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:284: warning: Member testReceivedAtisMessage(const BlackMisc::Aviation::CCallsign &callsign, const BlackMisc::Aviation::CInformationMessage &msg) (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:285: warning: Member testReceivedTextMessages(const BlackMisc::Network::CTextMessageList &textMessages) (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:286: warning: Member testRequestAircraftConfig(const BlackMisc::Aviation::CCallsign &callsign) (slot) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkimpl.h:122: warning: Member connectRemoteAircraftProviderSignals(QObject *receiver, std::function< void(const BlackMisc::Aviation::CAircraftSituation &)> addedSituationSlot, std::function< void(const BlackMisc::Aviation::CCallsign &, const BlackMisc::Aviation::CAircraftParts &)> addedPartsSlot, std::function< void(const BlackMisc::Aviation::CCallsign &)> removedAircraftSlot, std::function< void(const BlackMisc::Simulation::CAirspaceAircraftSnapshot &)> aircraftSnapshotSlot) (function) of class BlackCore::Context::CContextNetwork is not documented.
src/blackcore/context/contextnetworkproxy.h:77: warning: Member requestAtcBookingsUpdate() const (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:78: warning: Member getAtcStationsOnline(bool recalculateDistance) const (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:79: warning: Member getClosestAtcStationsOnline(int number) const (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:80: warning: Member getAtcStationsBooked(bool recalculateDistance) const (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:81: warning: Member getAircraftInRange() const (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:82: warning: Member getAircraftInRangeCallsigns() const (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:83: warning: Member getAircraftInRangeCount() const (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:84: warning: Member isAircraftInRange(const BlackMisc::Aviation::CCallsign &callsign) const (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:85: warning: Member getAircraftInRangeForCallsign(const BlackMisc::Aviation::CCallsign &callsign) const (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:86: warning: Member getOnlineStationsForFrequency(const BlackMisc::PhysicalQuantities::CFrequency &frequency, BlackMisc::Aviation::CComSystem::ChannelSpacing channelSpacing) const (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:87: warning: Member getOnlineStationForCallsign(const BlackMisc::Aviation::CCallsign &callsign) const (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:88: warning: Member isOnlineStation(const BlackMisc::Aviation::CCallsign &callsign) const (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:89: warning: Member connectToNetwork(const BlackMisc::Network::CServer &server, const QString &extraLiveryString, bool sendLivery, const QString &extraModelString, bool sendModelString, const BlackMisc::Aviation::CCallsign &partnerCallsign, BlackMisc::Network::CLoginMode mode) (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:90: warning: Member disconnectFromNetwork() (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:91: warning: Member isConnected() const (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:92: warning: Member getConnectedServer() const (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:93: warning: Member getLoginMode() const (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:94: warning: Member parseCommandLine(const QString &commandLine, const BlackMisc::CIdentifier &originator) (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:95: warning: Member sendTextMessages(const BlackMisc::Network::CTextMessageList &textMessages) (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:96: warning: Member sendFlightPlan(const BlackMisc::Aviation::CFlightPlan &flightPlan) (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:97: warning: Member loadFlightPlanFromNetwork(const BlackMisc::Aviation::CCallsign &callsign) const (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:98: warning: Member getMetarForAirport(const BlackMisc::Aviation::CAirportIcaoCode &airportIcaoCode) const (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:99: warning: Member getSelectedAtcStations() const (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:100: warning: Member getUsers() const (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:101: warning: Member getUsersForCallsigns(const BlackMisc::Aviation::CCallsignSet &callsigns) const (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:102: warning: Member getUserForCallsign(const BlackMisc::Aviation::CCallsign &callsign) const (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:103: warning: Member getClients() const (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:104: warning: Member getVatsimVoiceServers() const (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:105: warning: Member getVatsimFsdServers() const (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:106: warning: Member getClientsForCallsigns(const BlackMisc::Aviation::CCallsignSet &callsigns) const (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:107: warning: Member setOtherClient(const BlackMisc::Network::CClient &client) (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:108: warning: Member requestAircraftDataUpdates() (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:109: warning: Member requestAtisUpdates() (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:110: warning: Member updateAircraftEnabled(const BlackMisc::Aviation::CCallsign &callsign, bool enabledForRendering) (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:111: warning: Member setAircraftEnabledFlag(const BlackMisc::Aviation::CCallsign &callsign, bool enabledForRendering) (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:112: warning: Member updateAircraftModel(const BlackMisc::Aviation::CCallsign &callsign, const BlackMisc::Simulation::CAircraftModel &model, const BlackMisc::CIdentifier &originator) (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:113: warning: Member updateAircraftNetworkModel(const BlackMisc::Aviation::CCallsign &callsign, const BlackMisc::Simulation::CAircraftModel &model, const BlackMisc::CIdentifier &originator) (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:114: warning: Member updateFastPositionEnabled(const BlackMisc::Aviation::CCallsign &callsign, bool enableFastPositionSending) (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:115: warning: Member updateAircraftSupportingGndFLag(const BlackMisc::Aviation::CCallsign &callsign, bool supportGndFlag) (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:116: warning: Member reInitializeAllAircraft() (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:117: warning: Member setFastPositionEnabledCallsigns(BlackMisc::Aviation::CCallsignSet &callsigns) (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:118: warning: Member getFastPositionEnabledCallsigns() const (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:119: warning: Member getReverseLookupMessages(const BlackMisc::Aviation::CCallsign &callsign) const (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:120: warning: Member isReverseLookupMessagesEnabled() const (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:121: warning: Member enableReverseLookupMessages(BlackMisc::Simulation::ReverseLookupLogging enable) (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:122: warning: Member getAircraftPartsHistory(const BlackMisc::Aviation::CCallsign &callsign) const (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:123: warning: Member getRemoteAircraftParts(const BlackMisc::Aviation::CCallsign &callsign) const (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:124: warning: Member getLibraryInfo(bool detailed) const (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:125: warning: Member isAircraftPartsHistoryEnabled() const (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:126: warning: Member isRemoteAircraftSupportingParts(const BlackMisc::Aviation::CCallsign &callsign) const (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:127: warning: Member enableAircraftPartsHistory(bool enabled) (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:128: warning: Member getNetworkStatistics(bool reset, const QString &separator) (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:129: warning: Member setNetworkStatisticsEnable(bool enabled) (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:130: warning: Member getNetworkPresetValues() const (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:131: warning: Member getPartnerCallsign() const (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:132: warning: Member testCreateDummyOnlineAtcStations(int number) (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:133: warning: Member testAddAircraftParts(const BlackMisc::Aviation::CCallsign &callsign, const BlackMisc::Aviation::CAircraftParts &parts, bool incremental) (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:134: warning: Member testReceivedTextMessages(const BlackMisc::Network::CTextMessageList &textMessages) (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:135: warning: Member testReceivedAtisMessage(const BlackMisc::Aviation::CCallsign &callsign, const BlackMisc::Aviation::CInformationMessage &msg) (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:136: warning: Member testRequestAircraftConfig(const BlackMisc::Aviation::CCallsign &callsign) (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextnetworkproxy.h:137: warning: Member testAddAltitudeOffset(const BlackMisc::Aviation::CCallsign &callsign, const BlackMisc::PhysicalQuantities::CLength &offset=BlackMisc::PhysicalQuantities::CLength::null()) (slot) of class BlackCore::Context::CContextNetworkProxy is not documented.
src/blackcore/context/contextownaircraftproxy.h:67: warning: Member getOwnAircraft() const (slot) of class BlackCore::Context::CContextOwnAircraftProxy is not documented.
src/blackcore/context/contextownaircraftproxy.h:68: warning: Member getOwnComSystem(BlackMisc::Aviation::CComSystem::ComUnit unit) const (slot) of class BlackCore::Context::CContextOwnAircraftProxy is not documented.
src/blackcore/context/contextownaircraftproxy.h:69: warning: Member getOwnTransponder() const (slot) of class BlackCore::Context::CContextOwnAircraftProxy is not documented.
src/blackcore/context/contextownaircraftproxy.h:70: warning: Member getOwnAircraftSituation() const (slot) of class BlackCore::Context::CContextOwnAircraftProxy is not documented.
src/blackcore/context/contextownaircraftproxy.h:71: warning: Member updateOwnPosition(const BlackMisc::Geo::CCoordinateGeodetic &position, const BlackMisc::Aviation::CAltitude &altitude, const BlackMisc::Aviation::CAltitude &pressureAltitude) (slot) of class BlackCore::Context::CContextOwnAircraftProxy is not documented.
src/blackcore/context/contextownaircraftproxy.h:72: warning: Member updateCockpit(const BlackMisc::Aviation::CComSystem &com1, const BlackMisc::Aviation::CComSystem &com2, const BlackMisc::Aviation::CTransponder &transponder, const BlackMisc::CIdentifier &originator) (slot) of class BlackCore::Context::CContextOwnAircraftProxy is not documented.
src/blackcore/context/contextownaircraftproxy.h:73: warning: Member updateTransponderMode(const BlackMisc::Aviation::CTransponder::TransponderMode &transponderMode, const BlackMisc::CIdentifier &originator) (slot) of class BlackCore::Context::CContextOwnAircraftProxy is not documented.
src/blackcore/context/contextownaircraftproxy.h:74: warning: Member updateActiveComFrequency(const BlackMisc::PhysicalQuantities::CFrequency &frequency, BlackMisc::Aviation::CComSystem::ComUnit comUnit, const BlackMisc::CIdentifier &originator) (slot) of class BlackCore::Context::CContextOwnAircraftProxy is not documented.
src/blackcore/context/contextownaircraftproxy.h:75: warning: Member updateOwnAircraftPilot(const BlackMisc::Network::CUser &pilot) (slot) of class BlackCore::Context::CContextOwnAircraftProxy is not documented.
src/blackcore/context/contextownaircraftproxy.h:76: warning: Member updateSelcal(const BlackMisc::Aviation::CSelcal &selcal, const BlackMisc::CIdentifier &originator) (slot) of class BlackCore::Context::CContextOwnAircraftProxy is not documented.
src/blackcore/context/contextownaircraftproxy.h:77: warning: Member updateOwnCallsign(const BlackMisc::Aviation::CCallsign &callsign) (slot) of class BlackCore::Context::CContextOwnAircraftProxy is not documented.
src/blackcore/context/contextownaircraftproxy.h:78: warning: Member updateOwnIcaoCodes(const BlackMisc::Aviation::CAircraftIcaoCode &aircraftIcaoCode, const BlackMisc::Aviation::CAirlineIcaoCode &airlineIcaoCode) (slot) of class BlackCore::Context::CContextOwnAircraftProxy is not documented.
src/blackcore/context/contextownaircraftproxy.h:79: warning: Member toggleTransponderMode() (slot) of class BlackCore::Context::CContextOwnAircraftProxy is not documented.
src/blackcore/context/contextownaircraftproxy.h:80: warning: Member setTransponderMode(BlackMisc::Aviation::CTransponder::TransponderMode mode) (slot) of class BlackCore::Context::CContextOwnAircraftProxy is not documented.
src/blackcore/context/contextownaircraftproxy.h:81: warning: Member parseCommandLine(const QString &commandLine, const BlackMisc::CIdentifier &originator) (slot) of class BlackCore::Context::CContextOwnAircraftProxy is not documented.
src/blackcore/context/contextsimulatorimpl.h:80: warning: Member getSimulatorPluginInfo() const (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:81: warning: Member getAvailableSimulatorPlugins() const (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:82: warning: Member getSimulatorSettings() const (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:83: warning: Member setSimulatorSettings(const BlackMisc::Simulation::Settings::CSimulatorSettings &settings, const BlackMisc::Simulation::CSimulatorInfo &simulator) (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:84: warning: Member startSimulatorPlugin(const BlackMisc::Simulation::CSimulatorPluginInfo &simulatorInfo) (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:85: warning: Member stopSimulatorPlugin(const BlackMisc::Simulation::CSimulatorPluginInfo &simulatorInfo) (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:86: warning: Member checkListeners() (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:87: warning: Member getSimulatorStatus() const (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:88: warning: Member getSimulatorInternals() const (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:89: warning: Member getAirportsInRange(bool recalculateDistance) const (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:90: warning: Member getModelSetLoaderSimulator() const (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:91: warning: Member setModelSetLoaderSimulator(const BlackMisc::Simulation::CSimulatorInfo &simulator) (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:92: warning: Member simulatorsWithInitializedModelSet() const (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:93: warning: Member verifyPrerequisites() const (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:94: warning: Member getModelSetStrings() const (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:95: warning: Member getModelSetCompleterStrings(bool sorted) const (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:96: warning: Member isKnownModelInSet(const QString &modelString) const (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:97: warning: Member removeModelsFromSet(const BlackMisc::Simulation::CAircraftModelList &removeModels) (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:98: warning: Member disableModelsForMatching(const BlackMisc::Simulation::CAircraftModelList &removedModels, bool incremental) (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:99: warning: Member getDisabledModelsForMatching() const (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:100: warning: Member restoreDisabledModels() (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:101: warning: Member isValidationInProgress() const (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:102: warning: Member triggerModelSetValidation(const BlackMisc::Simulation::CSimulatorInfo &simulator) (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:103: warning: Member getModelSetModelsStartingWith(const QString &modelString) const (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:104: warning: Member getTimeSynchronizationOffset() const (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:105: warning: Member setTimeSynchronization(bool enable, const BlackMisc::PhysicalQuantities::CTime &offset) (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:106: warning: Member isTimeSynchronized() const (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:107: warning: Member getInterpolationAndRenderingSetupGlobal() const (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:108: warning: Member getInterpolationAndRenderingSetupsPerCallsign() const (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:109: warning: Member getInterpolationAndRenderingSetupPerCallsignOrDefault(const BlackMisc::Aviation::CCallsign &callsign) const (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:110: warning: Member setInterpolationAndRenderingSetupsPerCallsign(const BlackMisc::Simulation::CInterpolationSetupList &setups, bool ignoreSameAsGlobal) (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:111: warning: Member setInterpolationAndRenderingSetupGlobal(const BlackMisc::Simulation::CInterpolationAndRenderingSetupGlobal &setup) (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:112: warning: Member getInterpolationMessages(const BlackMisc::Aviation::CCallsign &callsign) const (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:113: warning: Member iconForModel(const QString &modelString) const (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:114: warning: Member highlightAircraft(const BlackMisc::Simulation::CSimulatedAircraft &aircraftToHighlight, bool enableHighlight, const BlackMisc::PhysicalQuantities::CTime &displayTime) (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:115: warning: Member followAircraft(const BlackMisc::Aviation::CCallsign &callsign) (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:116: warning: Member recalculateAllAircraft() (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:117: warning: Member resetToModelMatchingAircraft(const BlackMisc::Aviation::CCallsign &callsign) (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:118: warning: Member isWeatherActivated() const (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:119: warning: Member setWeatherActivated(bool activated) (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:120: warning: Member requestWeatherGrid(const BlackMisc::Geo::CCoordinateGeodetic &position, const BlackMisc::CIdentifier &identifier) (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:121: warning: Member requestElevationBySituation(const BlackMisc::Aviation::CAircraftSituation &situation) (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:122: warning: Member findClosestElevationWithinRange(const BlackMisc::Geo::CCoordinateGeodetic &reference, const BlackMisc::PhysicalQuantities::CLength &range) const (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:123: warning: Member doMatchingsAgain() (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:124: warning: Member doMatchingAgain(const BlackMisc::Aviation::CCallsign &callsign) (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:125: warning: Member getMatchingMessages(const BlackMisc::Aviation::CCallsign &callsign) const (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:126: warning: Member isMatchingMessagesEnabled() const (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:127: warning: Member enableMatchingMessages(BlackMisc::Simulation::MatchingLog enabled) (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:128: warning: Member getCurrentMatchingStatistics(bool missingOnly) const (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:129: warning: Member setMatchingSetup(const BlackMisc::Simulation::CAircraftMatcherSetup &setup) (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:130: warning: Member getMatchingSetup() const (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:131: warning: Member copyFsxTerrainProbe(const BlackMisc::Simulation::CSimulatorInfo &simulator) (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:132: warning: Member testRemoteAircraft(const BlackMisc::Simulation::CSimulatedAircraft &aircraft, bool add) (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:133: warning: Member testUpdateRemoteAircraft(const BlackMisc::Aviation::CCallsign &cs, const BlackMisc::Aviation::CAircraftSituation &situation, const BlackMisc::Aviation::CAircraftParts &parts) (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:136: warning: Member getModelSet() const (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorimpl.h:137: warning: Member getModelSetCount() const (slot) of class BlackCore::Context::CContextSimulator is not documented.
src/blackcore/context/contextsimulatorproxy.h:61: warning: Member getSimulatorPluginInfo() const (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:62: warning: Member getAvailableSimulatorPlugins() const (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:63: warning: Member getSimulatorSettings() const (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:64: warning: Member setSimulatorSettings(const BlackMisc::Simulation::Settings::CSimulatorSettings &settings, const BlackMisc::Simulation::CSimulatorInfo &simulatorInfo) (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:65: warning: Member startSimulatorPlugin(const BlackMisc::Simulation::CSimulatorPluginInfo &simulatorInfo) (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:66: warning: Member stopSimulatorPlugin(const BlackMisc::Simulation::CSimulatorPluginInfo &simulatorInfo) (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:67: warning: Member checkListeners() (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:68: warning: Member getSimulatorStatus() const (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:69: warning: Member getAirportsInRange(bool recalculatePosition) const (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:70: warning: Member getModelSet() const (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:71: warning: Member simulatorsWithInitializedModelSet() const (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:72: warning: Member verifyPrerequisites() const (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:73: warning: Member getModelSetLoaderSimulator() const (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:74: warning: Member setModelSetLoaderSimulator(const BlackMisc::Simulation::CSimulatorInfo &simulator) (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:75: warning: Member getModelSetStrings() const (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:76: warning: Member getModelSetCompleterStrings(bool sorted) const (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:77: warning: Member removeModelsFromSet(const BlackMisc::Simulation::CAircraftModelList &removeModels) (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:78: warning: Member isKnownModelInSet(const QString &modelString) const (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:79: warning: Member getModelSetModelsStartingWith(const QString &modelString) const (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:80: warning: Member getModelSetCount() const (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:81: warning: Member getSimulatorInternals() const (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:82: warning: Member disableModelsForMatching(const BlackMisc::Simulation::CAircraftModelList &removedModels, bool incremental) (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:83: warning: Member getDisabledModelsForMatching() const (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:84: warning: Member triggerModelSetValidation(const BlackMisc::Simulation::CSimulatorInfo &simulator) (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:85: warning: Member isValidationInProgress() const (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:86: warning: Member restoreDisabledModels() (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:87: warning: Member setTimeSynchronization(bool enable, const BlackMisc::PhysicalQuantities::CTime &offset) (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:88: warning: Member isTimeSynchronized() const (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:89: warning: Member getInterpolationAndRenderingSetupGlobal() const (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:90: warning: Member setInterpolationAndRenderingSetupGlobal(const BlackMisc::Simulation::CInterpolationAndRenderingSetupGlobal &setup) (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:91: warning: Member getInterpolationAndRenderingSetupsPerCallsign() const (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:92: warning: Member getInterpolationAndRenderingSetupPerCallsignOrDefault(const BlackMisc::Aviation::CCallsign &callsign) const (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:93: warning: Member setInterpolationAndRenderingSetupsPerCallsign(const BlackMisc::Simulation::CInterpolationSetupList &setups, bool ignoreSameAsGlobal) (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:94: warning: Member getInterpolationMessages(const BlackMisc::Aviation::CCallsign &callsign) const (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:95: warning: Member getTimeSynchronizationOffset() const (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:96: warning: Member iconForModel(const QString &modelString) const (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:97: warning: Member highlightAircraft(const BlackMisc::Simulation::CSimulatedAircraft &aircraftToHighlight, bool enableHighlight, const BlackMisc::PhysicalQuantities::CTime &displayTime) (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:98: warning: Member followAircraft(const BlackMisc::Aviation::CCallsign &callsign) (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:99: warning: Member recalculateAllAircraft() (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:100: warning: Member resetToModelMatchingAircraft(const BlackMisc::Aviation::CCallsign &callsign) (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:101: warning: Member isWeatherActivated() const (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:102: warning: Member setWeatherActivated(bool activated) (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:103: warning: Member requestWeatherGrid(const BlackMisc::Geo::CCoordinateGeodetic &position, const BlackMisc::CIdentifier &identifier) (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:104: warning: Member requestElevationBySituation(const BlackMisc::Aviation::CAircraftSituation &situation) (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:105: warning: Member findClosestElevationWithinRange(const BlackMisc::Geo::CCoordinateGeodetic &reference, const BlackMisc::PhysicalQuantities::CLength &range) const (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:106: warning: Member getMatchingMessages(const BlackMisc::Aviation::CCallsign &callsign) const (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:107: warning: Member isMatchingMessagesEnabled() const (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:108: warning: Member enableMatchingMessages(BlackMisc::Simulation::MatchingLog enabled) (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:109: warning: Member parseCommandLine(const QString &commandLine, const BlackMisc::CIdentifier &originator) (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:110: warning: Member doMatchingsAgain() (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:111: warning: Member doMatchingAgain(const BlackMisc::Aviation::CCallsign &callsign) (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:112: warning: Member getCurrentMatchingStatistics(bool missingOnly) const (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:113: warning: Member setMatchingSetup(const BlackMisc::Simulation::CAircraftMatcherSetup &setup) (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:114: warning: Member getMatchingSetup() const (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:115: warning: Member copyFsxTerrainProbe(const BlackMisc::Simulation::CSimulatorInfo &simulator) (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:116: warning: Member testRemoteAircraft(const BlackMisc::Simulation::CSimulatedAircraft &aircraft, bool add) (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/context/contextsimulatorproxy.h:117: warning: Member testUpdateRemoteAircraft(const BlackMisc::Aviation::CCallsign &cs, const BlackMisc::Aviation::CAircraftSituation &situation, const BlackMisc::Aviation::CAircraftParts &parts) (slot) of class BlackCore::Context::CContextSimulatorProxy is not documented.
src/blackcore/db/databasereaderconfig.h:103: warning: Member CSequence(QVector< T > &&vector) (function) of class BlackCore::Db::CDatabaseReaderConfigList is not documented.
src/blackmisc/sequence.h:113: warning: Member CSequence(QVector< CDatabaseReaderConfig > &&vector) (function) of class CSequence< CDatabaseReaderConfig > is not documented.
src/blackmisc/sequence.h:141: warning: Member toVector() && (function) of class CSequence< CDatabaseReaderConfig > is not documented.
src/blackmisc/sequence.h:91: warning: Member value_type (typedef) of class CSequence< CDatabaseReaderConfig > is not documented.
src/blackmisc/sequence.h:92: warning: Member reference (typedef) of class CSequence< CDatabaseReaderConfig > is not documented.
src/blackmisc/sequence.h:94: warning: Member pointer (typedef) of class CSequence< CDatabaseReaderConfig > is not documented.
src/blackmisc/sequence.h:96: warning: Member const_iterator (typedef) of class CSequence< CDatabaseReaderConfig > is not documented.
src/blackmisc/sequence.h:97: warning: Member iterator (typedef) of class CSequence< CDatabaseReaderConfig > is not documented.
src/blackmisc/sequence.h:98: warning: Member const_reverse_iterator (typedef) of class CSequence< CDatabaseReaderConfig > is not documented.
src/blackmisc/sequence.h:99: warning: Member reverse_iterator (typedef) of class CSequence< CDatabaseReaderConfig > is not documented.
src/blackmisc/sequence.h:100: warning: Member difference_type (typedef) of class CSequence< CDatabaseReaderConfig > is not documented.
src/blackmisc/sequence.h:101: warning: Member size_type (typedef) of class CSequence< CDatabaseReaderConfig > is not documented.
src/blackmisc/sequence.h:93: warning: Member const_reference (variable) of class CSequence< CDatabaseReaderConfig > is not documented.
src/blackmisc/sequence.h:95: warning: Member const_pointer (variable) of class CSequence< CDatabaseReaderConfig > is not documented.
src/blackgui/eventfilter.h:24: warning: Member QObject(QObject *parent) (function) of class BlackGui::CUpperCaseEventFilter is not documented.
src/blackgui/components/navigatordialog.h:84: warning: Member mouseMoveEvent(QMouseEvent *event) (function) of class BlackGui::Components::CNavigatorDialog is not documented.
src/blackgui/components/navigatordialog.h:85: warning: Member mousePressEvent(QMouseEvent *event) (function) of class BlackGui::Components::CNavigatorDialog is not documented.
src/blackgui/components/navigatordialog.h:86: warning: Member mouseReleaseEvent(QMouseEvent *event) (function) of class BlackGui::Components::CNavigatorDialog is not documented.
src/blackgui/components/navigatordialog.h:87: warning: Member changeEvent(QEvent *evt) (function) of class BlackGui::Components::CNavigatorDialog is not documented.
src/blackgui/components/navigatordialog.h:89: warning: Member paintEvent(QPaintEvent *event) (function) of class BlackGui::Components::CNavigatorDialog is not documented.
src/blackgui/components/navigatordialog.h:90: warning: Member enterEvent(QEvent *event) (function) of class BlackGui::Components::CNavigatorDialog is not documented.
src/blackgui/models/listmodelbase.h:50: warning: Member setData(const QModelIndex &index, const QVariant &value, int role=Qt::EditRole) final (function) of class CListModelBase< BlackMisc::Aviation::CAircraftCategoryList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:51: warning: Member mimeData(const QModelIndexList &indexes) const final (function) of class CListModelBase< BlackMisc::Aviation::CAircraftCategoryList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:52: warning: Member sort(int column, Qt::SortOrder order) final (function) of class CListModelBase< BlackMisc::Aviation::CAircraftCategoryList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:53: warning: Member rowCount(const QModelIndex &parentIndex=QModelIndex()) const final (function) of class CListModelBase< BlackMisc::Aviation::CAircraftCategoryList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:54: warning: Member canDropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) const final (function) of class CListModelBase< BlackMisc::Aviation::CAircraftCategoryList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:55: warning: Member dropMimeData(const QMimeData *mimeData, Qt::DropAction action, int row, int column, const QModelIndex &parent) final (function) of class CListModelBase< BlackMisc::Aviation::CAircraftCategoryList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:60: warning: Member toJson(bool selectedOnly=false) const (function) of class CListModelBase< BlackMisc::Aviation::CAircraftCategoryList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:61: warning: Member toJsonString(QJsonDocument::JsonFormat format=QJsonDocument::Indented, bool selectedOnly=false) const (function) of class CListModelBase< BlackMisc::Aviation::CAircraftCategoryList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:62: warning: Member isOrderable() const (function) of class CListModelBase< BlackMisc::Aviation::CAircraftCategoryList, UseCompare > is not documented.
src/blackgui/models/listmodelbasenontemplate.h:53: warning: Member columnCount(const QModelIndex &modelIndex=QModelIndex()) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:54: warning: Member headerData(int section, Qt::Orientation orientation, int role) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:55: warning: Member index(int row, int column, const QModelIndex &parent=QModelIndex()) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:56: warning: Member parent(const QModelIndex &child) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:57: warning: Member flags(const QModelIndex &index) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:58: warning: Member supportedDragActions() const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:59: warning: Member supportedDropActions() const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:60: warning: Member mimeTypes() const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbase.h:172: warning: Member onDataChanged(const QModelIndex &topLeft, const QModelIndex &bottomLeft, const QVector< int > &roles) (function) of class CListModelBase< BlackMisc::Aviation::CAircraftCategoryList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:173: warning: Member onChangedDigest() (function) of class CListModelBase< BlackMisc::Aviation::CAircraftCategoryList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:50: warning: Member setData(const QModelIndex &index, const QVariant &value, int role=Qt::EditRole) final (function) of class CListModelBase< BlackMisc::Aviation::CAircraftIcaoCodeList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:51: warning: Member mimeData(const QModelIndexList &indexes) const final (function) of class CListModelBase< BlackMisc::Aviation::CAircraftIcaoCodeList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:52: warning: Member sort(int column, Qt::SortOrder order) final (function) of class CListModelBase< BlackMisc::Aviation::CAircraftIcaoCodeList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:53: warning: Member rowCount(const QModelIndex &parentIndex=QModelIndex()) const final (function) of class CListModelBase< BlackMisc::Aviation::CAircraftIcaoCodeList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:54: warning: Member canDropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) const final (function) of class CListModelBase< BlackMisc::Aviation::CAircraftIcaoCodeList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:55: warning: Member dropMimeData(const QMimeData *mimeData, Qt::DropAction action, int row, int column, const QModelIndex &parent) final (function) of class CListModelBase< BlackMisc::Aviation::CAircraftIcaoCodeList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:60: warning: Member toJson(bool selectedOnly=false) const (function) of class CListModelBase< BlackMisc::Aviation::CAircraftIcaoCodeList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:61: warning: Member toJsonString(QJsonDocument::JsonFormat format=QJsonDocument::Indented, bool selectedOnly=false) const (function) of class CListModelBase< BlackMisc::Aviation::CAircraftIcaoCodeList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:62: warning: Member isOrderable() const (function) of class CListModelBase< BlackMisc::Aviation::CAircraftIcaoCodeList, UseCompare > is not documented.
src/blackgui/models/listmodelbasenontemplate.h:53: warning: Member columnCount(const QModelIndex &modelIndex=QModelIndex()) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:54: warning: Member headerData(int section, Qt::Orientation orientation, int role) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:55: warning: Member index(int row, int column, const QModelIndex &parent=QModelIndex()) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:56: warning: Member parent(const QModelIndex &child) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:57: warning: Member flags(const QModelIndex &index) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:58: warning: Member supportedDragActions() const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:59: warning: Member supportedDropActions() const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:60: warning: Member mimeTypes() const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbase.h:172: warning: Member onDataChanged(const QModelIndex &topLeft, const QModelIndex &bottomLeft, const QVector< int > &roles) (function) of class CListModelBase< BlackMisc::Aviation::CAircraftIcaoCodeList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:173: warning: Member onChangedDigest() (function) of class CListModelBase< BlackMisc::Aviation::CAircraftIcaoCodeList, UseCompare > is not documented.
src/blackgui/models/listmodeldbobjects.h:104: warning: Member update(const ContainerType &container, bool sort) (function) of class COrderableListModelDbObjects< BlackMisc::Simulation::CAircraftModelList, int, true > is not documented.
src/blackgui/models/listmodeldbobjects.h:105: warning: Member moveItems(const ContainerType &items, int position) (function) of class COrderableListModelDbObjects< BlackMisc::Simulation::CAircraftModelList, int, true > is not documented.
src/blackgui/models/listmodelbase.h:50: warning: Member setData(const QModelIndex &index, const QVariant &value, int role=Qt::EditRole) final (function) of class CListModelBase< BlackMisc::Simulation::CAircraftModelList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:51: warning: Member mimeData(const QModelIndexList &indexes) const final (function) of class CListModelBase< BlackMisc::Simulation::CAircraftModelList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:52: warning: Member sort(int column, Qt::SortOrder order) final (function) of class CListModelBase< BlackMisc::Simulation::CAircraftModelList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:53: warning: Member rowCount(const QModelIndex &parentIndex=QModelIndex()) const final (function) of class CListModelBase< BlackMisc::Simulation::CAircraftModelList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:54: warning: Member canDropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) const final (function) of class CListModelBase< BlackMisc::Simulation::CAircraftModelList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:55: warning: Member dropMimeData(const QMimeData *mimeData, Qt::DropAction action, int row, int column, const QModelIndex &parent) final (function) of class CListModelBase< BlackMisc::Simulation::CAircraftModelList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:60: warning: Member toJson(bool selectedOnly=false) const (function) of class CListModelBase< BlackMisc::Simulation::CAircraftModelList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:61: warning: Member toJsonString(QJsonDocument::JsonFormat format=QJsonDocument::Indented, bool selectedOnly=false) const (function) of class CListModelBase< BlackMisc::Simulation::CAircraftModelList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:62: warning: Member isOrderable() const (function) of class CListModelBase< BlackMisc::Simulation::CAircraftModelList, UseCompare > is not documented.
src/blackgui/models/listmodelbasenontemplate.h:53: warning: Member columnCount(const QModelIndex &modelIndex=QModelIndex()) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:54: warning: Member headerData(int section, Qt::Orientation orientation, int role) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:55: warning: Member index(int row, int column, const QModelIndex &parent=QModelIndex()) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:56: warning: Member parent(const QModelIndex &child) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:57: warning: Member flags(const QModelIndex &index) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:58: warning: Member supportedDragActions() const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:59: warning: Member supportedDropActions() const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:60: warning: Member mimeTypes() const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbase.h:172: warning: Member onDataChanged(const QModelIndex &topLeft, const QModelIndex &bottomLeft, const QVector< int > &roles) (function) of class CListModelBase< BlackMisc::Simulation::CAircraftModelList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:173: warning: Member onChangedDigest() (function) of class CListModelBase< BlackMisc::Simulation::CAircraftModelList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:49: warning: Member data(const QModelIndex &index, int role) const (function) of class CListModelBase< BlackMisc::Aviation::CAircraftPartsList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:50: warning: Member setData(const QModelIndex &index, const QVariant &value, int role=Qt::EditRole) final (function) of class CListModelBase< BlackMisc::Aviation::CAircraftPartsList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:51: warning: Member mimeData(const QModelIndexList &indexes) const final (function) of class CListModelBase< BlackMisc::Aviation::CAircraftPartsList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:52: warning: Member sort(int column, Qt::SortOrder order) final (function) of class CListModelBase< BlackMisc::Aviation::CAircraftPartsList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:53: warning: Member rowCount(const QModelIndex &parentIndex=QModelIndex()) const final (function) of class CListModelBase< BlackMisc::Aviation::CAircraftPartsList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:54: warning: Member canDropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) const final (function) of class CListModelBase< BlackMisc::Aviation::CAircraftPartsList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:55: warning: Member dropMimeData(const QMimeData *mimeData, Qt::DropAction action, int row, int column, const QModelIndex &parent) final (function) of class CListModelBase< BlackMisc::Aviation::CAircraftPartsList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:60: warning: Member toJson(bool selectedOnly=false) const (function) of class CListModelBase< BlackMisc::Aviation::CAircraftPartsList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:61: warning: Member toJsonString(QJsonDocument::JsonFormat format=QJsonDocument::Indented, bool selectedOnly=false) const (function) of class CListModelBase< BlackMisc::Aviation::CAircraftPartsList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:62: warning: Member isOrderable() const (function) of class CListModelBase< BlackMisc::Aviation::CAircraftPartsList, UseCompare > is not documented.
src/blackgui/models/listmodelbasenontemplate.h:53: warning: Member columnCount(const QModelIndex &modelIndex=QModelIndex()) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:54: warning: Member headerData(int section, Qt::Orientation orientation, int role) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:55: warning: Member index(int row, int column, const QModelIndex &parent=QModelIndex()) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:56: warning: Member parent(const QModelIndex &child) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:57: warning: Member flags(const QModelIndex &index) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:58: warning: Member supportedDragActions() const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:59: warning: Member supportedDropActions() const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:60: warning: Member mimeTypes() const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbase.h:172: warning: Member onDataChanged(const QModelIndex &topLeft, const QModelIndex &bottomLeft, const QVector< int > &roles) (function) of class CListModelBase< BlackMisc::Aviation::CAircraftPartsList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:173: warning: Member onChangedDigest() (function) of class CListModelBase< BlackMisc::Aviation::CAircraftPartsList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:49: warning: Member data(const QModelIndex &index, int role) const (function) of class CListModelBase< BlackMisc::Aviation::CAircraftSituationChangeList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:50: warning: Member setData(const QModelIndex &index, const QVariant &value, int role=Qt::EditRole) final (function) of class CListModelBase< BlackMisc::Aviation::CAircraftSituationChangeList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:51: warning: Member mimeData(const QModelIndexList &indexes) const final (function) of class CListModelBase< BlackMisc::Aviation::CAircraftSituationChangeList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:52: warning: Member sort(int column, Qt::SortOrder order) final (function) of class CListModelBase< BlackMisc::Aviation::CAircraftSituationChangeList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:53: warning: Member rowCount(const QModelIndex &parentIndex=QModelIndex()) const final (function) of class CListModelBase< BlackMisc::Aviation::CAircraftSituationChangeList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:54: warning: Member canDropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) const final (function) of class CListModelBase< BlackMisc::Aviation::CAircraftSituationChangeList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:55: warning: Member dropMimeData(const QMimeData *mimeData, Qt::DropAction action, int row, int column, const QModelIndex &parent) final (function) of class CListModelBase< BlackMisc::Aviation::CAircraftSituationChangeList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:60: warning: Member toJson(bool selectedOnly=false) const (function) of class CListModelBase< BlackMisc::Aviation::CAircraftSituationChangeList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:61: warning: Member toJsonString(QJsonDocument::JsonFormat format=QJsonDocument::Indented, bool selectedOnly=false) const (function) of class CListModelBase< BlackMisc::Aviation::CAircraftSituationChangeList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:62: warning: Member isOrderable() const (function) of class CListModelBase< BlackMisc::Aviation::CAircraftSituationChangeList, UseCompare > is not documented.
src/blackgui/models/listmodelbasenontemplate.h:53: warning: Member columnCount(const QModelIndex &modelIndex=QModelIndex()) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:54: warning: Member headerData(int section, Qt::Orientation orientation, int role) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:55: warning: Member index(int row, int column, const QModelIndex &parent=QModelIndex()) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:56: warning: Member parent(const QModelIndex &child) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:57: warning: Member flags(const QModelIndex &index) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:58: warning: Member supportedDragActions() const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:59: warning: Member supportedDropActions() const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:60: warning: Member mimeTypes() const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbase.h:172: warning: Member onDataChanged(const QModelIndex &topLeft, const QModelIndex &bottomLeft, const QVector< int > &roles) (function) of class CListModelBase< BlackMisc::Aviation::CAircraftSituationChangeList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:173: warning: Member onChangedDigest() (function) of class CListModelBase< BlackMisc::Aviation::CAircraftSituationChangeList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:49: warning: Member data(const QModelIndex &index, int role) const (function) of class CListModelBase< BlackMisc::Aviation::CAircraftSituationList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:50: warning: Member setData(const QModelIndex &index, const QVariant &value, int role=Qt::EditRole) final (function) of class CListModelBase< BlackMisc::Aviation::CAircraftSituationList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:51: warning: Member mimeData(const QModelIndexList &indexes) const final (function) of class CListModelBase< BlackMisc::Aviation::CAircraftSituationList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:52: warning: Member sort(int column, Qt::SortOrder order) final (function) of class CListModelBase< BlackMisc::Aviation::CAircraftSituationList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:53: warning: Member rowCount(const QModelIndex &parentIndex=QModelIndex()) const final (function) of class CListModelBase< BlackMisc::Aviation::CAircraftSituationList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:54: warning: Member canDropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) const final (function) of class CListModelBase< BlackMisc::Aviation::CAircraftSituationList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:55: warning: Member dropMimeData(const QMimeData *mimeData, Qt::DropAction action, int row, int column, const QModelIndex &parent) final (function) of class CListModelBase< BlackMisc::Aviation::CAircraftSituationList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:60: warning: Member toJson(bool selectedOnly=false) const (function) of class CListModelBase< BlackMisc::Aviation::CAircraftSituationList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:61: warning: Member toJsonString(QJsonDocument::JsonFormat format=QJsonDocument::Indented, bool selectedOnly=false) const (function) of class CListModelBase< BlackMisc::Aviation::CAircraftSituationList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:62: warning: Member isOrderable() const (function) of class CListModelBase< BlackMisc::Aviation::CAircraftSituationList, UseCompare > is not documented.
src/blackgui/models/listmodelbasenontemplate.h:53: warning: Member columnCount(const QModelIndex &modelIndex=QModelIndex()) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:54: warning: Member headerData(int section, Qt::Orientation orientation, int role) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:55: warning: Member index(int row, int column, const QModelIndex &parent=QModelIndex()) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:56: warning: Member parent(const QModelIndex &child) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:57: warning: Member flags(const QModelIndex &index) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:58: warning: Member supportedDragActions() const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:59: warning: Member supportedDropActions() const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:60: warning: Member mimeTypes() const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbase.h:172: warning: Member onDataChanged(const QModelIndex &topLeft, const QModelIndex &bottomLeft, const QVector< int > &roles) (function) of class CListModelBase< BlackMisc::Aviation::CAircraftSituationList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:173: warning: Member onChangedDigest() (function) of class CListModelBase< BlackMisc::Aviation::CAircraftSituationList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:50: warning: Member setData(const QModelIndex &index, const QVariant &value, int role=Qt::EditRole) final (function) of class CListModelBase< BlackMisc::Aviation::CAirlineIcaoCodeList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:51: warning: Member mimeData(const QModelIndexList &indexes) const final (function) of class CListModelBase< BlackMisc::Aviation::CAirlineIcaoCodeList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:52: warning: Member sort(int column, Qt::SortOrder order) final (function) of class CListModelBase< BlackMisc::Aviation::CAirlineIcaoCodeList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:53: warning: Member rowCount(const QModelIndex &parentIndex=QModelIndex()) const final (function) of class CListModelBase< BlackMisc::Aviation::CAirlineIcaoCodeList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:54: warning: Member canDropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) const final (function) of class CListModelBase< BlackMisc::Aviation::CAirlineIcaoCodeList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:55: warning: Member dropMimeData(const QMimeData *mimeData, Qt::DropAction action, int row, int column, const QModelIndex &parent) final (function) of class CListModelBase< BlackMisc::Aviation::CAirlineIcaoCodeList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:60: warning: Member toJson(bool selectedOnly=false) const (function) of class CListModelBase< BlackMisc::Aviation::CAirlineIcaoCodeList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:61: warning: Member toJsonString(QJsonDocument::JsonFormat format=QJsonDocument::Indented, bool selectedOnly=false) const (function) of class CListModelBase< BlackMisc::Aviation::CAirlineIcaoCodeList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:62: warning: Member isOrderable() const (function) of class CListModelBase< BlackMisc::Aviation::CAirlineIcaoCodeList, UseCompare > is not documented.
src/blackgui/models/listmodelbasenontemplate.h:53: warning: Member columnCount(const QModelIndex &modelIndex=QModelIndex()) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:54: warning: Member headerData(int section, Qt::Orientation orientation, int role) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:55: warning: Member index(int row, int column, const QModelIndex &parent=QModelIndex()) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:56: warning: Member parent(const QModelIndex &child) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:57: warning: Member flags(const QModelIndex &index) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:58: warning: Member supportedDragActions() const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:59: warning: Member supportedDropActions() const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:60: warning: Member mimeTypes() const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbase.h:172: warning: Member onDataChanged(const QModelIndex &topLeft, const QModelIndex &bottomLeft, const QVector< int > &roles) (function) of class CListModelBase< BlackMisc::Aviation::CAirlineIcaoCodeList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:173: warning: Member onChangedDigest() (function) of class CListModelBase< BlackMisc::Aviation::CAirlineIcaoCodeList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:49: warning: Member data(const QModelIndex &index, int role) const (function) of class CListModelBase< BlackMisc::Aviation::CAirportList, true > is not documented.
src/blackgui/models/listmodelbase.h:50: warning: Member setData(const QModelIndex &index, const QVariant &value, int role=Qt::EditRole) final (function) of class CListModelBase< BlackMisc::Aviation::CAirportList, true > is not documented.
src/blackgui/models/listmodelbase.h:51: warning: Member mimeData(const QModelIndexList &indexes) const final (function) of class CListModelBase< BlackMisc::Aviation::CAirportList, true > is not documented.
src/blackgui/models/listmodelbase.h:52: warning: Member sort(int column, Qt::SortOrder order) final (function) of class CListModelBase< BlackMisc::Aviation::CAirportList, true > is not documented.
src/blackgui/models/listmodelbase.h:53: warning: Member rowCount(const QModelIndex &parentIndex=QModelIndex()) const final (function) of class CListModelBase< BlackMisc::Aviation::CAirportList, true > is not documented.
src/blackgui/models/listmodelbase.h:54: warning: Member canDropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) const final (function) of class CListModelBase< BlackMisc::Aviation::CAirportList, true > is not documented.
src/blackgui/models/listmodelbase.h:55: warning: Member dropMimeData(const QMimeData *mimeData, Qt::DropAction action, int row, int column, const QModelIndex &parent) final (function) of class CListModelBase< BlackMisc::Aviation::CAirportList, true > is not documented.
src/blackgui/models/listmodelbase.h:60: warning: Member toJson(bool selectedOnly=false) const (function) of class CListModelBase< BlackMisc::Aviation::CAirportList, true > is not documented.
src/blackgui/models/listmodelbase.h:61: warning: Member toJsonString(QJsonDocument::JsonFormat format=QJsonDocument::Indented, bool selectedOnly=false) const (function) of class CListModelBase< BlackMisc::Aviation::CAirportList, true > is not documented.
src/blackgui/models/listmodelbase.h:62: warning: Member isOrderable() const (function) of class CListModelBase< BlackMisc::Aviation::CAirportList, true > is not documented.
src/blackgui/models/listmodelbasenontemplate.h:53: warning: Member columnCount(const QModelIndex &modelIndex=QModelIndex()) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:54: warning: Member headerData(int section, Qt::Orientation orientation, int role) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:55: warning: Member index(int row, int column, const QModelIndex &parent=QModelIndex()) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:56: warning: Member parent(const QModelIndex &child) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:57: warning: Member flags(const QModelIndex &index) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:58: warning: Member supportedDragActions() const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:59: warning: Member supportedDropActions() const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:60: warning: Member mimeTypes() const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbase.h:172: warning: Member onDataChanged(const QModelIndex &topLeft, const QModelIndex &bottomLeft, const QVector< int > &roles) (function) of class CListModelBase< BlackMisc::Aviation::CAirportList, true > is not documented.
src/blackgui/models/listmodelbase.h:173: warning: Member onChangedDigest() (function) of class CListModelBase< BlackMisc::Aviation::CAirportList, true > is not documented.
src/blackgui/models/listmodelbase.h:49: warning: Member data(const QModelIndex &index, int role) const (function) of class CListModelBase< BlackMisc::CApplicationInfoList, true > is not documented.
src/blackgui/models/listmodelbase.h:50: warning: Member setData(const QModelIndex &index, const QVariant &value, int role=Qt::EditRole) final (function) of class CListModelBase< BlackMisc::CApplicationInfoList, true > is not documented.
src/blackgui/models/listmodelbase.h:51: warning: Member mimeData(const QModelIndexList &indexes) const final (function) of class CListModelBase< BlackMisc::CApplicationInfoList, true > is not documented.
src/blackgui/models/listmodelbase.h:52: warning: Member sort(int column, Qt::SortOrder order) final (function) of class CListModelBase< BlackMisc::CApplicationInfoList, true > is not documented.
src/blackgui/models/listmodelbase.h:53: warning: Member rowCount(const QModelIndex &parentIndex=QModelIndex()) const final (function) of class CListModelBase< BlackMisc::CApplicationInfoList, true > is not documented.
src/blackgui/models/listmodelbase.h:54: warning: Member canDropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) const final (function) of class CListModelBase< BlackMisc::CApplicationInfoList, true > is not documented.
src/blackgui/models/listmodelbase.h:55: warning: Member dropMimeData(const QMimeData *mimeData, Qt::DropAction action, int row, int column, const QModelIndex &parent) final (function) of class CListModelBase< BlackMisc::CApplicationInfoList, true > is not documented.
src/blackgui/models/listmodelbase.h:60: warning: Member toJson(bool selectedOnly=false) const (function) of class CListModelBase< BlackMisc::CApplicationInfoList, true > is not documented.
src/blackgui/models/listmodelbase.h:61: warning: Member toJsonString(QJsonDocument::JsonFormat format=QJsonDocument::Indented, bool selectedOnly=false) const (function) of class CListModelBase< BlackMisc::CApplicationInfoList, true > is not documented.
src/blackgui/models/listmodelbase.h:62: warning: Member isOrderable() const (function) of class CListModelBase< BlackMisc::CApplicationInfoList, true > is not documented.
src/blackgui/models/listmodelbasenontemplate.h:53: warning: Member columnCount(const QModelIndex &modelIndex=QModelIndex()) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:54: warning: Member headerData(int section, Qt::Orientation orientation, int role) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:55: warning: Member index(int row, int column, const QModelIndex &parent=QModelIndex()) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:56: warning: Member parent(const QModelIndex &child) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:57: warning: Member flags(const QModelIndex &index) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:58: warning: Member supportedDragActions() const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:59: warning: Member supportedDropActions() const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:60: warning: Member mimeTypes() const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbase.h:172: warning: Member onDataChanged(const QModelIndex &topLeft, const QModelIndex &bottomLeft, const QVector< int > &roles) (function) of class CListModelBase< BlackMisc::CApplicationInfoList, true > is not documented.
src/blackgui/models/listmodelbase.h:173: warning: Member onChangedDigest() (function) of class CListModelBase< BlackMisc::CApplicationInfoList, true > is not documented.
src/blackgui/models/listmodelbase.h:50: warning: Member setData(const QModelIndex &index, const QVariant &value, int role=Qt::EditRole) final (function) of class CListModelBase< BlackMisc::Aviation::CAtcStationList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:51: warning: Member mimeData(const QModelIndexList &indexes) const final (function) of class CListModelBase< BlackMisc::Aviation::CAtcStationList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:52: warning: Member sort(int column, Qt::SortOrder order) final (function) of class CListModelBase< BlackMisc::Aviation::CAtcStationList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:53: warning: Member rowCount(const QModelIndex &parentIndex=QModelIndex()) const final (function) of class CListModelBase< BlackMisc::Aviation::CAtcStationList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:54: warning: Member canDropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) const final (function) of class CListModelBase< BlackMisc::Aviation::CAtcStationList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:55: warning: Member dropMimeData(const QMimeData *mimeData, Qt::DropAction action, int row, int column, const QModelIndex &parent) final (function) of class CListModelBase< BlackMisc::Aviation::CAtcStationList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:60: warning: Member toJson(bool selectedOnly=false) const (function) of class CListModelBase< BlackMisc::Aviation::CAtcStationList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:61: warning: Member toJsonString(QJsonDocument::JsonFormat format=QJsonDocument::Indented, bool selectedOnly=false) const (function) of class CListModelBase< BlackMisc::Aviation::CAtcStationList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:62: warning: Member isOrderable() const (function) of class CListModelBase< BlackMisc::Aviation::CAtcStationList, UseCompare > is not documented.
src/blackgui/models/listmodelbasenontemplate.h:53: warning: Member columnCount(const QModelIndex &modelIndex=QModelIndex()) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:54: warning: Member headerData(int section, Qt::Orientation orientation, int role) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:55: warning: Member index(int row, int column, const QModelIndex &parent=QModelIndex()) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:56: warning: Member parent(const QModelIndex &child) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:57: warning: Member flags(const QModelIndex &index) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:58: warning: Member supportedDragActions() const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:59: warning: Member supportedDropActions() const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:60: warning: Member mimeTypes() const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbase.h:172: warning: Member onDataChanged(const QModelIndex &topLeft, const QModelIndex &bottomLeft, const QVector< int > &roles) (function) of class CListModelBase< BlackMisc::Aviation::CAtcStationList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:173: warning: Member onChangedDigest() (function) of class CListModelBase< BlackMisc::Aviation::CAtcStationList, UseCompare > is not documented.
src/blackgui/models/listmodelbase.h:49: warning: Member data(const QModelIndex &index, int role) const (function) of class CListModelBase< BlackMisc::Audio::CAudioDeviceInfoList, true > is not documented.
src/blackgui/models/listmodelbase.h:50: warning: Member setData(const QModelIndex &index, const QVariant &value, int role=Qt::EditRole) final (function) of class CListModelBase< BlackMisc::Audio::CAudioDeviceInfoList, true > is not documented.
src/blackgui/models/listmodelbase.h:51: warning: Member mimeData(const QModelIndexList &indexes) const final (function) of class CListModelBase< BlackMisc::Audio::CAudioDeviceInfoList, true > is not documented.
src/blackgui/models/listmodelbase.h:52: warning: Member sort(int column, Qt::SortOrder order) final (function) of class CListModelBase< BlackMisc::Audio::CAudioDeviceInfoList, true > is not documented.
src/blackgui/models/listmodelbase.h:53: warning: Member rowCount(const QModelIndex &parentIndex=QModelIndex()) const final (function) of class CListModelBase< BlackMisc::Audio::CAudioDeviceInfoList, true > is not documented.
src/blackgui/models/listmodelbase.h:54: warning: Member canDropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) const final (function) of class CListModelBase< BlackMisc::Audio::CAudioDeviceInfoList, true > is not documented.
src/blackgui/models/listmodelbase.h:55: warning: Member dropMimeData(const QMimeData *mimeData, Qt::DropAction action, int row, int column, const QModelIndex &parent) final (function) of class CListModelBase< BlackMisc::Audio::CAudioDeviceInfoList, true > is not documented.
src/blackgui/models/listmodelbase.h:60: warning: Member toJson(bool selectedOnly=false) const (function) of class CListModelBase< BlackMisc::Audio::CAudioDeviceInfoList, true > is not documented.
src/blackgui/models/listmodelbase.h:61: warning: Member toJsonString(QJsonDocument::JsonFormat format=QJsonDocument::Indented, bool selectedOnly=false) const (function) of class CListModelBase< BlackMisc::Audio::CAudioDeviceInfoList, true > is not documented.
src/blackgui/models/listmodelbase.h:62: warning: Member isOrderable() const (function) of class CListModelBase< BlackMisc::Audio::CAudioDeviceInfoList, true > is not documented.
src/blackgui/models/listmodelbasenontemplate.h:53: warning: Member columnCount(const QModelIndex &modelIndex=QModelIndex()) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:54: warning: Member headerData(int section, Qt::Orientation orientation, int role) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:55: warning: Member index(int row, int column, const QModelIndex &parent=QModelIndex()) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:56: warning: Member parent(const QModelIndex &child) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:57: warning: Member flags(const QModelIndex &index) const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:58: warning: Member supportedDragActions() const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackgui/models/listmodelbasenontemplate.h:59: warning: Member supportedDropActions() const final (function) of class BlackGui::Models::CListModelBaseNonTemplate is not documented.
src/blackmisc/sequence.h:96: warning: Member const_iterator (typedef) of class CSequence< CWindLayer > is not documented.
src/blackmisc/sequence.h:97: warning: Member iterator (typedef) of class CSequence< CWindLayer > is not documented.
src/blackmisc/sequence.h:98: warning: Member const_reverse_iterator (typedef) of class CSequence< CWindLayer > is not documented.
src/blackmisc/sequence.h:99: warning: Member reverse_iterator (typedef) of class CSequence< CWindLayer > is not documented.
src/blackmisc/sequence.h:100: warning: Member difference_type (typedef) of class CSequence< CWindLayer > is not documented.
src/blackmisc/sequence.h:101: warning: Member size_type (typedef) of class CSequence< CWindLayer > is not documented.
src/blackmisc/sequence.h:93: warning: Member const_reference (variable) of class CSequence< CWindLayer > is not documented.
src/blackmisc/sequence.h:95: warning: Member const_pointer (variable) of class CSequence< CWindLayer > is not documented.
tests/blackmisc/testsharedstate/testsharedstate.h:111: warning: Member onElementAdded(const int &) (function) of class BlackMiscTest::CTestListObserver is not documented.
samples/cliclient/client.h:137: warning: Member atcPositionUpdate(const BlackMisc::Aviation::CCallsign &callsign, const BlackMisc::PhysicalQuantities::CFrequency &freq, const BlackMisc::Geo::CCoordinateGeodetic &pos, const BlackMisc::PhysicalQuantities::CLength &range) (slot) of class BlackSample::Client is not documented.
samples/cliclient/client.h:139: warning: Member atcDisconnected(const BlackMisc::Aviation::CCallsign &callsign) (slot) of class BlackSample::Client is not documented.
samples/cliclient/client.h:140: warning: Member connectionStatusChanged(BlackCore::INetwork::ConnectionStatus oldStatus, BlackCore::INetwork::ConnectionStatus newStatus) (slot) of class BlackSample::Client is not documented.
samples/cliclient/client.h:141: warning: Member ipReplyReceived(const QString &ip) (slot) of class BlackSample::Client is not documented.
samples/cliclient/client.h:142: warning: Member freqReplyReceived(const BlackMisc::Aviation::CCallsign &callsign, const BlackMisc::PhysicalQuantities::CFrequency &freq) (slot) of class BlackSample::Client is not documented.
samples/cliclient/client.h:143: warning: Member serverReplyReceived(const BlackMisc::Aviation::CCallsign &callsign, const QString &server) (slot) of class BlackSample::Client is not documented.
samples/cliclient/client.h:144: warning: Member atcReplyReceived(const BlackMisc::Aviation::CCallsign &callsign, bool isATC) (slot) of class BlackSample::Client is not documented.
samples/cliclient/client.h:145: warning: Member atisReplyReceived(const BlackMisc::Aviation::CCallsign &callsign, const BlackMisc::Aviation::CInformationMessage &atis) (slot) of class BlackSample::Client is not documented.
samples/cliclient/client.h:146: warning: Member realNameReplyReceived(const BlackMisc::Aviation::CCallsign &callsign, const QString &realname) (slot) of class BlackSample::Client is not documented.
samples/cliclient/client.h:147: warning: Member capabilitiesReplyReceived(const BlackMisc::Aviation::CCallsign &callsign, quint32 flags) (slot) of class BlackSample::Client is not documented.
samples/cliclient/client.h:148: warning: Member kicked(const QString &msg) (slot) of class BlackSample::Client is not documented.
samples/cliclient/client.h:149: warning: Member metarReplyReceived(const QString &data) (slot) of class BlackSample::Client is not documented.
samples/cliclient/client.h:150: warning: Member flightPlanReplyReceived(const BlackMisc::Aviation::CCallsign &callsign, const BlackMisc::Aviation::CFlightPlan &flightPlan) (slot) of class BlackSample::Client is not documented.
samples/cliclient/client.h:151: warning: Member pilotDisconnected(const BlackMisc::Aviation::CCallsign &callsign) (slot) of class BlackSample::Client is not documented.
samples/cliclient/client.h:152: warning: Member icaoCodesReplyReceived(const BlackMisc::Aviation::CCallsign &callsign, const QString &aircraftIcaoDesignator, const QString &airlineIcaoDesignator, const QString &livery) (slot) of class BlackSample::Client is not documented.
samples/cliclient/client.h:153: warning: Member pongReceived(const BlackMisc::Aviation::CCallsign &callsign, const BlackMisc::PhysicalQuantities::CTime &elapsedTime) (slot) of class BlackSample::Client is not documented.
samples/cliclient/client.h:154: warning: Member textMessagesReceived(const BlackMisc::Network::CTextMessageList &messages) (slot) of class BlackSample::Client is not documented.
samples/cliclient/client.h:155: warning: Member customPacketReceived(const BlackMisc::Aviation::CCallsign &callsign, const QString &packetId, const QStringList &data) (slot) of class BlackSample::Client is not documented.
samples/cliclient/client.h:109: warning: Member presetServer(const BlackMisc::Network::CServer &server) (signal) of class BlackSample::Client is not documented.
samples/cliclient/client.h:110: warning: Member presetCallsign(const BlackMisc::Aviation::CCallsign &callsign) (signal) of class BlackSample::Client is not documented.
samples/cliclient/client.h:111: warning: Member presetRealName(const QString &name) (signal) of class BlackSample::Client is not documented.
samples/cliclient/client.h:112: warning: Member presetIcaoCodes(const BlackMisc::Simulation::CSimulatedAircraft &aircraft) (signal) of class BlackSample::Client is not documented.
samples/cliclient/client.h:113: warning: Member presetLoginMode(BlackCore::INetwork::LoginMode mode) (signal) of class BlackSample::Client is not documented.
samples/cliclient/client.h:114: warning: Member initiateConnection() (signal) of class BlackSample::Client is not documented.
samples/cliclient/client.h:115: warning: Member terminateConnection() (signal) of class BlackSample::Client is not documented.
samples/cliclient/client.h:116: warning: Member sendTextMessages(const BlackMisc::Network::CTextMessageList &textMessages) (signal) of class BlackSample::Client is not documented.
samples/cliclient/client.h:117: warning: Member sendRadioTextMessage(const QVector< BlackMisc::PhysicalQuantities::CFrequency > &freqs, const QString &msg) (signal) of class BlackSample::Client is not documented.
samples/cliclient/client.h:118: warning: Member sendIpQuery() (signal) of class BlackSample::Client is not documented.
samples/cliclient/client.h:119: warning: Member sendFreqQuery(const BlackMisc::Aviation::CCallsign &callsign) (signal) of class BlackSample::Client is not documented.
samples/cliclient/client.h:120: warning: Member sendServerQuery(const BlackMisc::Aviation::CCallsign &callsign) (signal) of class BlackSample::Client is not documented.
samples/cliclient/client.h:121: warning: Member sendAtcQuery(const BlackMisc::Aviation::CCallsign &callsign) (signal) of class BlackSample::Client is not documented.
samples/cliclient/client.h:122: warning: Member sendAtisQuery(const BlackMisc::Aviation::CCallsign &callsign) (signal) of class BlackSample::Client is not documented.
samples/cliclient/client.h:123: warning: Member sendFlightPlan(const BlackMisc::Aviation::CFlightPlan &fp) (signal) of class BlackSample::Client is not documented.
samples/cliclient/client.h:124: warning: Member sendFlightPlanQuery(const BlackMisc::Aviation::CCallsign &callsign) (signal) of class BlackSample::Client is not documented.
samples/cliclient/client.h:125: warning: Member sendRealNameQuery(const BlackMisc::Aviation::CCallsign &callsign) (signal) of class BlackSample::Client is not documented.
samples/cliclient/client.h:126: warning: Member sendCapabilitiesQuery(const BlackMisc::Aviation::CCallsign &callsign) (signal) of class BlackSample::Client is not documented.
samples/cliclient/client.h:127: warning: Member sendIcaoCodesQuery(const BlackMisc::Aviation::CCallsign &callsign) (signal) of class BlackSample::Client is not documented.
samples/cliclient/client.h:128: warning: Member setOwnAircraftCockpit(const BlackMisc::Aviation::CComSystem &com1, const BlackMisc::Aviation::CComSystem &com2, const BlackMisc::Aviation::CTransponder &xpdr, const QString &originator) (signal) of class BlackSample::Client is not documented.
samples/cliclient/client.h:130: warning: Member sendPing(const BlackMisc::Aviation::CCallsign &callsign) (signal) of class BlackSample::Client is not documented.
samples/cliclient/client.h:131: warning: Member sendMetarQuery(const QString &airportICAO) (signal) of class BlackSample::Client is not documented.