[AFV] Allow to log. input receiver

This commit is contained in:
Klaus Basan
2020-04-26 00:53:48 +02:00
committed by Mat Sutcliffe
parent 2c6794a009
commit 9e6716e515
8 changed files with 70 additions and 18 deletions

View File

@@ -51,7 +51,7 @@ namespace BlackCore
const QString &callsign() const { return m_callsign; }
//! Type
const QString &type() const { return m_type; }
const QString &type() const { return m_aircraftType; }
//! Is active?
//! @{
@@ -73,6 +73,9 @@ namespace BlackCore
//! Bypass effects
void setBypassEffects(bool bypassEffects);
//! Info
QString toQString() const;
private:
void timerElapsed();
void idle();
@@ -88,7 +91,7 @@ namespace BlackCore
const int m_idleTimeoutMs = 500;
QString m_callsign;
QString m_type;
QString m_aircraftType;
bool m_inUse = false;
bool m_bypassEffects = false;