#include <QModelIndex>
#include <QDebug>
#include "kdganttglobal.h"
#include "kdganttconstraint.h"
Go to the source code of this file.
Namespaces | |
namespace | KDGantt |
Classes | |
class | KDGantt::ConstraintModel |
Functions | |
QDebug | operator<< (QDebug dbg, KDGantt::ConstraintModel *model) |
QDebug | operator<< (QDebug dbg, const KDGantt::ConstraintModel &model) |
QDebug operator<< | ( | QDebug | dbg, | |
KDGantt::ConstraintModel * | model | |||
) |
Definition at line 75 of file kdganttconstraintmodel.h.
References operator<<().
00076 { 00077 return operator<<(dbg,*model); 00078 }
QDebug operator<< | ( | QDebug | dbg, | |
const KDGantt::ConstraintModel & | model | |||
) |
Definition at line 211 of file kdganttconstraintmodel.cpp.
References KDGantt::ConstraintModel::constraints().
00212 { 00213 dbg << "KDGantt::ConstraintModel[ " << static_cast<const QObject*>( &model ) << ":" 00214 << model.constraints() << "]"; 00215 return dbg; 00216 }