class HeadingSetting
Defined in:
The C4Configuration.h
HeadingSetting
class is used to display a heading in a list of settings.
Definition
class HeadingSetting : public Setting
Constructor
HeadingSetting(Type identifier, const char *title);
Parameters
identifier |
The setting's unique identifier. |
title |
The title of the setting. |
Description
The HeadingSetting
class represents a setting that simply displays a heading (specified by the title
parameter) and has no value. Even though the setting doesn't need to be identified in the Configurable::SetSetting
function, it should still have a unique identifier specified by the identifier
parameter.
Base Classes
Setting |
A HeadingSetting is a specific type of setting.
|