More detailled validation messages "which models look odd"

This commit is contained in:
Klaus Basan
2019-09-04 22:27:49 +02:00
committed by Mat Sutcliffe
parent decdbb4432
commit 507e059438
3 changed files with 41 additions and 3 deletions

View File

@@ -266,6 +266,7 @@ namespace BlackMisc
//! With/without DB key @{
CAircraftModelList findWithValidDbKey() const;
CAircraftModelList findWithoutValidDbKey() const;
CAircraftModelList findWithoutValidDbKey(int maxElements) const;
//! @}
//! Some finders for NON DB models, mostly for matching script results @{
@@ -274,8 +275,12 @@ namespace BlackMisc
CAircraftModelList findNonDbModelsForModelString(const QString &modelString) const;
//! @}
//! All included models
CAircraftModelList getAllIncludedModels() const;
//! All included/excluded models @{
CAircraftModelList findAllIncludedModels() const;
CAircraftModelList findAllIncludedModels(int maxElements) const;
CAircraftModelList findAllExcludedModels() const;
CAircraftModelList findAllExcludedModels(int maxElements) const;
//! @}
//! Take a designator and find its family
QString designatorToFamily(const Aviation::CAircraftIcaoCode &aircraftIcaoCode) const;