QDebugStateSaver Class
Convenience class for custom QDebug operators 更多...
头文件: | #include <QDebugStateSaver> |
qmake: | QT += core |
开始支持版本: | Qt 5.1 |
公有函数
QDebugStateSaver(QDebug &dbg) | |
~QDebugStateSaver() |
详细描述
Convenience class for custom QDebug operators
Saves the settings used by QDebug, and restores them upon destruction, then calls maybeSpace(), to separate arguments with a space if autoInsertSpaces() was true at the time of constructing the QDebugStateSaver.
The automatic insertion of spaces between writes is one of the settings that QDebugStateSaver stores for the duration of the current block.
The settings of the internal QTextStream are also saved and restored, so that using << hex in a QDebug operator doesn't affect other QDebug operators.
成员函数
QDebugStateSaver::QDebugStateSaver(QDebug &dbg)
Creates a QDebugStateSaver instance, which saves the settings currently used by dbg.
参见 QDebug::setAutoInsertSpaces() and QDebug::autoInsertSpaces().
QDebugStateSaver::~QDebugStateSaver()
Destroys a QDebugStateSaver instance, which restores the settings used when the QDebugStateSaver instance was created.
参见 QDebug::setAutoInsertSpaces() and QDebug::autoInsertSpaces().