[doxygen] Fix broken groupings

This commit is contained in:
Mat Sutcliffe
2020-08-01 19:08:08 +01:00
parent faf7f2a2cf
commit 2ae0352e75
115 changed files with 474 additions and 248 deletions

View File

@@ -160,7 +160,8 @@ namespace XSwiftBus
//! Get whether all wheels are on the ground
bool getAllWheelsOnGround() const { return m_onGroundAll.get(); }
//! COM Selection 6/7 @{
//! COM Selection 6/7
//! @{
int getComSelection() const { return m_comAudioSelection.get(); }
bool isCom1Selected() const { return this->getComSelection() == 6; }
bool isCom2Selected() const { return this->getComSelection() == 7; }

View File

@@ -193,26 +193,30 @@ namespace XSwiftBus
const std::string &livery_, const std::string &modelName_);
};
//! Check functions @{
//! Check functions
//! @{
static bool isPlusMinusOne(float v);
static bool isPlusMinus180(float v);
static bool isPlusMinus180(double v);
static bool isZeroTo360(double v);
//! @}
//! Normalize to (-180, 180] or [0, 360) degrees @{
//! Normalize to (-180, 180] or [0, 360) degrees
//! @{
static float normalizeToPlusMinus180Deg(float v);
static double normalizeToPlusMinus180Deg(double v);
static float normalizeToZero360Deg(float v);
static double normalizeToZero360Deg(double v);
//! @}
//! Check the position if values are valid @{
//! Check the position if values are valid
//! @{
static bool isValidPosition(const XPMPPlanePosition_t &position);
static bool isValidPosition(const XPLMCameraPosition_t *camPos);
//! @}
//! Pos as string @{
//! Pos as string
//! @{
static std::string pos2String(const XPMPPlanePosition_t &position);
static std::string pos2String(const XPLMCameraPosition_t *camPos);
//! @}