Desc

Adds a description to the option which will be shown in the command line when -h is provided and in the config file.

struct Desc {}

Members

Variables

description
string description;
Undocumented in source.

Examples

MyConfig
{
    @Desc("My config option.")
    int option;
}

Will be serialized as:

; My config option.
; Default value: 0
;option=0

Meta