QGIS API Documentation
3.8.0-Zanzibar (11aff65)
|
QgsOptional is a container for other classes and adds an additional enabled/disabled flag. More...
#include <qgsoptional.h>
Public Member Functions | |
QgsOptional ()=default | |
A QgsOptional is disabled by default if default constructed. More... | |
QgsOptional (const T &data) | |
A QgsOptional is enabled by default if constructed with payload. More... | |
QgsOptional (const T &data, bool enabled) | |
A QgsOptional constructed with enabled status and data. More... | |
T | data () const |
Access the payload data. More... | |
bool | enabled () const |
Check if this optional is enabled. More... | |
operator bool () const | |
Boolean operator. More... | |
const T * | operator-> () const |
Access the payload data. More... | |
bool | operator== (const QgsOptional< T > &other) const |
Compare this QgsOptional to another one. More... | |
void | setData (const T &data) |
Set the payload data. More... | |
void | setEnabled (bool enabled) |
Set if this optional is enabled. More... | |
QgsOptional is a container for other classes and adds an additional enabled/disabled flag.
Often it is used for configuration options which can be enabled or disabled but also have more internal configuration information that should not be lost when disabling and re-enabling.
Definition at line 36 of file qgsoptional.h.
|
default |
A QgsOptional is disabled by default if default constructed.
|
inline |
A QgsOptional is enabled by default if constructed with payload.
Definition at line 48 of file qgsoptional.h.
|
inline |
A QgsOptional constructed with enabled status and data.
Definition at line 57 of file qgsoptional.h.
|
inline |
|
inline |
|
inline |
Boolean operator.
Will return true
if this optional is enabled.
Definition at line 79 of file qgsoptional.h.
|
inline |
|
inline |
Compare this QgsOptional to another one.
This will compare the enabled flag and call the == operator of the contained class.
Definition at line 71 of file qgsoptional.h.
|
inline |
|
inline |