#include "qpolygon.h"
#include "qrect.h"
#include "qdatastream.h"
#include "qmatrix.h"
#include "qdebug.h"
#include "qpainterpath.h"
#include "qvariant.h"
#include "qpainterpath_p.h"
#include "qbezier_p.h"
#include <stdarg.h>
Include dependency graph for qpolygon.cpp:

Go to the source code of this file.
Functions | |
| QDebug | operator<< (QDebug dbg, const QPolygon &a) |
| QDataStream & | operator<< (QDataStream &s, const QPolygonF &a) |
| QDataStream & | operator>> (QDataStream &s, QPolygonF &a) |
| QDebug | operator<< (QDebug dbg, const QPolygonF &a) |
Definition at line 673 of file qpolygon.cpp.
00674 { 00675 #ifndef Q_BROKEN_DEBUG_STREAM 00676 dbg.nospace() << "QPolygonF("; 00677 for (int i = 0; i < a.count(); ++i) 00678 dbg.nospace() << a.at(i); 00679 dbg.nospace() << ')'; 00680 return dbg.space(); 00681 #else 00682 qWarning("This compiler doesn't support streaming QPolygonF to QDebug"); 00683 return dbg; 00684 Q_UNUSED(a); 00685 #endif 00686 }
| QDataStream& operator<< | ( | QDataStream & | s, | |
| const QPolygonF & | a | |||
| ) | [related] |
Definition at line 407 of file qpolygon.cpp.
00408 { 00409 #ifndef Q_BROKEN_DEBUG_STREAM 00410 dbg.nospace() << "QPolygon("; 00411 for (int i = 0; i < a.count(); ++i) 00412 dbg.nospace() << a.at(i); 00413 dbg.nospace() << ')'; 00414 return dbg.space(); 00415 #else 00416 qWarning("This compiler doesn't support streaming QPolygon to QDebug"); 00417 return dbg; 00418 Q_UNUSED(a); 00419 #endif 00420 }
| QDataStream& operator>> | ( | QDataStream & | s, | |
| QPolygonF & | a | |||
| ) | [related] |
1.5.1