Ref T573, short XPDR string

This commit is contained in:
Klaus Basan
2019-03-19 05:30:47 +01:00
committed by Mat Sutcliffe
parent 0a013fc906
commit 57ae224c41
2 changed files with 37 additions and 3 deletions

View File

@@ -77,6 +77,9 @@ namespace BlackMisc
//! Transponder mode as string
QString getModeAsString() const { return modeAsString(this->getTransponderMode()); }
//! Transponder mode as short string
QString getModeAsShortString() const { return modeAsShortString(this->getTransponderMode()); }
//! In any sending mode such as MIL1 oder ModeS
bool isInNormalSendingMode() const;
@@ -98,6 +101,9 @@ namespace BlackMisc
//! Transponder mode as string
static const QString &modeAsString(TransponderMode mode);
//! Transponder mode as short string
static const QString &modeAsShortString(CTransponder::TransponderMode mode);
//! Transponder code
int getTransponderCode() const { return m_transponderCode; }