Krita Source Code Documentation
Loading...
Searching...
No Matches
kis_base_node.h File Reference
#include <QObject>
#include <QIcon>
#include <QUuid>
#include <QString>
#include <KoID.h>
#include "kis_shared.h"
#include "kis_paint_device.h"
#include "kis_processing_visitor.h"
#include "kritaimage_export.h"

Go to the source code of this file.

Classes

class  KisBaseNode
 
struct  KisBaseNode::Property
 

Functions

KRITAIMAGE_EXPORT QDebug operator<< (QDebug dbg, const KisBaseNode::Property &prop)
 

Function Documentation

◆ operator<<()

KRITAIMAGE_EXPORT QDebug operator<< ( QDebug dbg,
const KisBaseNode::Property & prop )

Definition at line 473 of file kis_base_node.cpp.

474{
475 dbg.nospace() << "Property(" << prop.id << ", " << prop.state;
476
477 if (prop.isInStasis) {
478 dbg.nospace() << ", in-stasis";
479 }
480
481 dbg.nospace() << ")";
482
483 return dbg.space();
484}

References KisBaseNode::Property::id, KisBaseNode::Property::isInStasis, and KisBaseNode::Property::state.