Krita Source Code Documentation
Loading...
Searching...
No Matches
KisCumulativeUndoData.cpp File Reference
#include "KisCumulativeUndoData.h"
#include <kconfiggroup.h>
#include <kis_debug.h>

Go to the source code of this file.

Functions

QDebug KRITACOMMAND_EXPORT operator<< (QDebug dbg, const KisCumulativeUndoData &data)
 

Function Documentation

◆ operator<<()

QDebug KRITACOMMAND_EXPORT operator<< ( QDebug dbg,
const KisCumulativeUndoData & data )

Definition at line 35 of file KisCumulativeUndoData.cpp.

36{
37 dbg.nospace() << "KisCumulativeUndoData(";
38 dbg.space() << ppVar(data.excludeFromMerge);
39 dbg.space() << ppVar(data.mergeTimeout);
40 dbg.space() << ppVar(data.maxGroupSeparation);
41 dbg.space() << ppVar(data.maxGroupDuration);
42 dbg.nospace() << ")";
43
44 return dbg.nospace();
45}
#define ppVar(var)
Definition kis_debug.h:155

References KisCumulativeUndoData::excludeFromMerge, KisCumulativeUndoData::maxGroupDuration, KisCumulativeUndoData::maxGroupSeparation, KisCumulativeUndoData::mergeTimeout, and ppVar.