mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-31 04:25:35 +08:00
refactor: clang format line length
This commit is contained in:
@@ -35,13 +35,16 @@ namespace swift::core
|
||||
|
||||
public:
|
||||
//! Constructor
|
||||
CCoreFacadeConfig(ContextMode allTheSame = NotUsed, const QString &dbusBootstrapAddress = "") : m_application(allTheSame), m_audio(allTheSame), m_network(allTheSame), m_ownAircraft(allTheSame), m_simulator(allTheSame),
|
||||
m_dbusAddress(dbusBootstrapAddress)
|
||||
CCoreFacadeConfig(ContextMode allTheSame = NotUsed, const QString &dbusBootstrapAddress = "")
|
||||
: m_application(allTheSame), m_audio(allTheSame), m_network(allTheSame), m_ownAircraft(allTheSame),
|
||||
m_simulator(allTheSame), m_dbusAddress(dbusBootstrapAddress)
|
||||
{}
|
||||
|
||||
//! Constructor
|
||||
CCoreFacadeConfig(ContextMode application, ContextMode audio, ContextMode network, ContextMode ownAircraft, ContextMode simulator, const QString &dbusBootstrapAddress = "") : m_application(application), m_audio(audio), m_network(network), m_ownAircraft(ownAircraft), m_simulator(simulator),
|
||||
m_dbusAddress(dbusBootstrapAddress)
|
||||
CCoreFacadeConfig(ContextMode application, ContextMode audio, ContextMode network, ContextMode ownAircraft,
|
||||
ContextMode simulator, const QString &dbusBootstrapAddress = "")
|
||||
: m_application(application), m_audio(audio), m_network(network), m_ownAircraft(ownAircraft),
|
||||
m_simulator(simulator), m_dbusAddress(dbusBootstrapAddress)
|
||||
{}
|
||||
|
||||
//! Application mode
|
||||
|
||||
Reference in New Issue
Block a user