mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-09 05:28:09 +08:00
[doxygen] Fix broken groupings
This commit is contained in:
@@ -100,7 +100,8 @@ namespace BlackSimPlugin
|
||||
char atcAirline[64]; //!< Airline used by ATC
|
||||
char atcFlightNumber[8]; //!< Flight Number used by ATC
|
||||
|
||||
//! Copy the strings, length from docu @{
|
||||
//! Copy the strings, length from docu
|
||||
//! @{
|
||||
void copyAtcId(const char *c) { strncpy_s(atcId, c, 10); atcId[9] = 0; }
|
||||
void copyAtcAirline(const char *c) { strncpy_s(atcAirline, c, 50); atcAirline[49] = 0; }
|
||||
void copyFlightNumber(const char *c) { strncpy_s(atcFlightNumber, c, 6); atcFlightNumber[5] = 0; }
|
||||
|
||||
@@ -70,7 +70,8 @@ typedef HRESULT(__stdcall *PfnSimConnect_SetObserverLookAt)(HANDLE, const char *
|
||||
#endif
|
||||
|
||||
//! The SimConnect Symbols
|
||||
//! \private @{
|
||||
//! \private
|
||||
//! @{
|
||||
struct SimConnectSymbols
|
||||
{
|
||||
PfnSimConnect_Open SimConnect_Open = nullptr;
|
||||
@@ -113,7 +114,7 @@ struct SimConnectSymbols
|
||||
PfnSimConnect_CloseView SimConnect_CloseView = nullptr;
|
||||
#endif
|
||||
};
|
||||
//! @ }
|
||||
//! @}
|
||||
|
||||
static SimConnectSymbols gSymbols;
|
||||
|
||||
|
||||
@@ -300,7 +300,8 @@ namespace BlackSimPlugin
|
||||
//! Register help
|
||||
static void registerHelp();
|
||||
|
||||
//! Word size @{
|
||||
//! Word size
|
||||
//! @{
|
||||
static bool is32bit() { return (BlackConfig::CBuildConfig::buildWordSize() == 32); }
|
||||
static bool is64bit() { return (BlackConfig::CBuildConfig::buildWordSize() == 64); }
|
||||
//! @}
|
||||
@@ -629,7 +630,8 @@ namespace BlackSimPlugin
|
||||
static QString requestIdToString(DWORD requestId);
|
||||
|
||||
public:
|
||||
//! Offsets @{
|
||||
//! Offsets
|
||||
//! @{
|
||||
static DWORD offsetSimObjAircraft(CSimConnectDefinitions::SimObjectRequest req) { return MaxSimObjAircraft * static_cast<DWORD>(req); }
|
||||
static DWORD offsetSimObjTerrainProbe(CSimConnectDefinitions::SimObjectRequest req) { return MaxSimObjProbes * static_cast<DWORD>(req); }
|
||||
//! @}
|
||||
|
||||
Reference in New Issue
Block a user