Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
|
contains all the information for a single config variable in a .qdocconf file. More...
#include <config.h>
Classes | |
struct | ConfigValue |
Public Member Functions | |
QString | asString (const QString defaultString=QString()) const |
Returns this configuration variable as a string. | |
QStringList | asStringList () const |
Returns this config variable as a string list. | |
QSet< QString > | asStringSet () const |
Returns this config variable as a string set. | |
bool | asBool () const |
Returns this config variable as a boolean. | |
int | asInt () const |
Returns this configuration variable as an integer; iterates through the string list, interpreting each string in the list as an integer and adding it to a total sum. | |
const Location & | location () const |
ConfigVar ()=default | |
ConfigVar (QString name, const QStringList &values, const QString &dir, const Location &loc=Location(), const QList< ExpandVar > &expandVars=QList< ExpandVar >()) | |
Friends | |
class | Config |
contains all the information for a single config variable in a .qdocconf file.
|
default |
|
nodiscard |
Returns this config variable as a boolean.
Definition at line 264 of file config.cpp.
Referenced by loadIndexFiles(), logStartEndMessage(), and processQdocconfFile().
|
nodiscard |
Returns this configuration variable as an integer; iterates through the string list, interpreting each string in the list as an integer and adding it to a total sum.
Returns 0 if this variable is defined as empty, and -1 if it's is not defined.
Definition at line 277 of file config.cpp.
Returns this configuration variable as a string.
If the variable is not defined, returns defaultString.
Definition at line 227 of file config.cpp.
|
nodiscard |
Returns this config variable as a string list.
Definition at line 244 of file config.cpp.
Returns this config variable as a string set.
Definition at line 255 of file config.cpp.
|
inlinenodiscard |