Doxygen fixes

This commit is contained in:
Klaus Basan
2014-07-06 23:22:24 +02:00
parent 3729721fc3
commit b949a2635b
4 changed files with 43 additions and 41 deletions

View File

@@ -59,39 +59,39 @@ namespace BlackCore
const QDBusConnection &getDBusConnection() const { return this->m_dbusConnection; }
//! Enable / disable all logging
//! \threadsafe
//! \remarks thread safe
void signalLog(bool enabled);
//! Signal logging for application context
//! \threadsafe
//! \remarks thread safe
bool signalLogForApplication(bool enabled);
//! Signal logging for audio context
//! \threadsafe
//! \remarks thread safe
bool signalLogForAudio(bool enabled);
//! Signal logging for network context
//! \threadsafe
//! \remarks thread safe
bool signalLogForNetwork(bool enabled);
//! Signal logging for own aircraft context
//! \threadsafe
//! \remarks thread safe
bool signalLogForOwnAircraft(bool enabled);
//! Signal logging for settings context
//! \threadsafe
//! \remarks thread safe
bool signalLogForSettings(bool enabled);
//! Signal logging for simulator context
//! \threadsafe
//! \remarks thread safe
bool signalLogForSimulator(bool enabled);
//! Enable / disable all logging
//! \threadsafe
//! \remarks thread safe
void slotLog(bool enabled);
//! Slot logging for application context
//! \threadsafe
//! \remarks thread safe
void slotLogForApplication(bool enabled)
{
QWriteLocker wl(&m_lock);
@@ -99,7 +99,7 @@ namespace BlackCore
}
//! Slot logging for audio context
//! \threadsafe
//! \remarks thread safe
void slotLogForAudio(bool enabled)
{
QWriteLocker wl(&m_lock);
@@ -107,7 +107,7 @@ namespace BlackCore
}
//! Slot logging for network context
//! \threadsafe
//! \remarks thread safe
void slotLogForNetwork(bool enabled)
{
QWriteLocker wl(&m_lock);
@@ -115,7 +115,7 @@ namespace BlackCore
}
//! Slot logging for own aircraft context
//! \threadsafe
//! \remarks thread safe
void slotLogForOwnAircraft(bool enabled)
{
QWriteLocker wl(&m_lock);
@@ -123,7 +123,7 @@ namespace BlackCore
}
//! Slot logging for settings context
//! \threadsafe
//! \remarks thread safe
void slotLogForSettings(bool enabled)
{
QWriteLocker wl(&m_lock);
@@ -131,7 +131,7 @@ namespace BlackCore
}
//! Slot logging for simulator context
//! \threadsafe
//! \remarks thread safe
void slotLogForSimulator(bool enabled)
{
QWriteLocker wl(&m_lock);
@@ -139,7 +139,7 @@ namespace BlackCore
}
//! Slot logging for application context
//! \threadsafe
//! \remarks thread safe
bool isSlotLogForApplicationEnabled() const
{
QReadLocker rl(&m_lock);
@@ -147,7 +147,7 @@ namespace BlackCore
}
//! Slot logging for audio context
//! \threadsafe
//! \remarks thread safe
bool isSlotLogForAudioEnabled() const
{
QReadLocker rl(&m_lock);
@@ -155,7 +155,7 @@ namespace BlackCore
}
//! Slot logging for network context
//! \threadsafe
//! \remarks thread safe
bool isSlotLogForNetworkEnabled() const
{
QReadLocker rl(&m_lock);
@@ -163,7 +163,7 @@ namespace BlackCore
}
//! Slot log for own aircraft
//! \threadsafe
//! \remarks thread safe
bool isSlotLogForOwnAircraftEnabled() const
{
QReadLocker rl(&m_lock);
@@ -171,7 +171,7 @@ namespace BlackCore
}
//! Slot logging for settings context
//! \threadsafe
//! \remarks thread safe
bool isSlotLogForSettingsEnabled() const
{
QReadLocker rl(&m_lock);
@@ -179,7 +179,7 @@ namespace BlackCore
}
//! Slot logging for simulator context
//! \threadsafe
//! \remarks thread safe
bool isSlotLogForSimulatorEnabled() const
{
QReadLocker rl(&m_lock);
@@ -187,7 +187,7 @@ namespace BlackCore
}
//! Slot logging for specified context
//! \threadsafe
//! \remarks thread safe
bool isSlotLogEnabledFor(LogContext context) const;
//! Slot logging