mirror of
https://github.com/daveallie/crosspoint-reader.git
synced 2026-02-07 08:07:40 +03:00
fix clang formatting
This commit is contained in:
parent
3f9142fba7
commit
993a52a639
@ -15,9 +15,9 @@ enum class SettingType { TOGGLE, ENUM, ACTION, VALUE };
|
|||||||
|
|
||||||
// Structure to hold setting information
|
// Structure to hold setting information
|
||||||
struct SettingInfo {
|
struct SettingInfo {
|
||||||
const char* name; // Display name of the setting
|
const char* name; // Display name of the setting
|
||||||
SettingType type; // Type of setting
|
SettingType type; // Type of setting
|
||||||
uint8_t CrossPointSettings::* valuePtr; // Pointer for 8-bit settings (TOGGLE/ENUM)
|
uint8_t CrossPointSettings::* valuePtr; // Pointer for 8-bit settings (TOGGLE/ENUM)
|
||||||
uint16_t CrossPointSettings::* valuePtr16; // Pointer for 16-bit VALUE settings
|
uint16_t CrossPointSettings::* valuePtr16; // Pointer for 16-bit VALUE settings
|
||||||
std::vector<std::string> enumValues;
|
std::vector<std::string> enumValues;
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user