mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-24 01:31:46 +00:00
[docs] Generate docs for symbols in __cplusplus (#5412)
This commit is contained in:
@@ -409,7 +409,7 @@ class SimValue {
|
||||
/**
|
||||
* Wraps a simulated value handle as returned by HAL_CreateSimValue().
|
||||
*
|
||||
* @param handle simulated value handle
|
||||
* @param val simulated value handle
|
||||
*/
|
||||
/*implicit*/ SimValue(HAL_SimValueHandle val) // NOLINT
|
||||
: m_handle(val) {}
|
||||
@@ -461,7 +461,7 @@ class SimInt : public SimValue {
|
||||
/**
|
||||
* Wraps a simulated value handle as returned by HAL_CreateSimValueInt().
|
||||
*
|
||||
* @param handle simulated value handle
|
||||
* @param val simulated value handle
|
||||
*/
|
||||
/*implicit*/ SimInt(HAL_SimValueHandle val) // NOLINT
|
||||
: SimValue(val) {}
|
||||
@@ -502,7 +502,7 @@ class SimLong : public SimValue {
|
||||
/**
|
||||
* Wraps a simulated value handle as returned by HAL_CreateSimValueLong().
|
||||
*
|
||||
* @param handle simulated value handle
|
||||
* @param val simulated value handle
|
||||
*/
|
||||
/*implicit*/ SimLong(HAL_SimValueHandle val) // NOLINT
|
||||
: SimValue(val) {}
|
||||
@@ -543,7 +543,7 @@ class SimDouble : public SimValue {
|
||||
/**
|
||||
* Wraps a simulated value handle as returned by HAL_CreateSimValueDouble().
|
||||
*
|
||||
* @param handle simulated value handle
|
||||
* @param val simulated value handle
|
||||
*/
|
||||
/*implicit*/ SimDouble(HAL_SimValueHandle val) // NOLINT
|
||||
: SimValue(val) {}
|
||||
@@ -584,7 +584,7 @@ class SimEnum : public SimValue {
|
||||
/**
|
||||
* Wraps a simulated value handle as returned by HAL_CreateSimValueEnum().
|
||||
*
|
||||
* @param handle simulated value handle
|
||||
* @param val simulated value handle
|
||||
*/
|
||||
/*implicit*/ SimEnum(HAL_SimValueHandle val) // NOLINT
|
||||
: SimValue(val) {}
|
||||
@@ -618,7 +618,7 @@ class SimBoolean : public SimValue {
|
||||
/**
|
||||
* Wraps a simulated value handle as returned by HAL_CreateSimValueBoolean().
|
||||
*
|
||||
* @param handle simulated value handle
|
||||
* @param val simulated value handle
|
||||
*/
|
||||
/*implicit*/ SimBoolean(HAL_SimValueHandle val) // NOLINT
|
||||
: SimValue(val) {}
|
||||
|
||||
Reference in New Issue
Block a user