Go to the source code of this file.
Typedefs | |
typedef int | ParamFlag |
Typedef for flags related to ModelParamBase and ParamClient. | |
Variables | |
const ParamFlag | USE_MY_VAL = 1 << 0 |
Flag for various functions that says "use my value as the default". | |
const ParamFlag | ALLOW_ONLINE_CHANGES = 1 << 1 |
Whether the parameter is allowed to be changed while the model is active. | |
const ParamFlag | MP_INACTIVE = 1 << 2 |
Whether the parameter is currently inactive. | |
const ParamFlag | MP_HIDDEN = 1 << 3 |
Whether the parameter is currently hidden. |
Flags related to ModelParamBase and ParamClient
Definition in file ParamFlags.H.
typedef int ParamFlag |
Typedef for flags related to ModelParamBase and ParamClient.
Definition at line 42 of file ParamFlags.H.
const ParamFlag ALLOW_ONLINE_CHANGES = 1 << 1 |
Whether the parameter is allowed to be changed while the model is active.
Definition at line 48 of file ParamFlags.H.
Referenced by ModelParamBase::allowsOnlineChanges().
Whether the parameter is currently hidden.
Definition at line 54 of file ParamFlags.H.
Referenced by ModelParamBase::getHidden(), and ModelParamBase::setHidden().
const ParamFlag MP_INACTIVE = 1 << 2 |
Whether the parameter is currently inactive.
Definition at line 51 of file ParamFlags.H.
Referenced by ModelParamBase::getInactive(), and ModelParamBase::setInactive().
const ParamFlag USE_MY_VAL = 1 << 0 |
Flag for various functions that says "use my value as the default".
Definition at line 45 of file ParamFlags.H.
Referenced by ModelComponent::registerOptionedParam().