| Absolute File Name: | /home/opencoverage/opencoverage/guest-scripts/qtdeclarative/src/qtdeclarative/src/quick/scenegraph/util/qsgrectanglenode.h |
| Switch to Source code | Preprocessed file |
| Line | Source | Count |
|---|---|---|
| 1 | - | |
| 2 | - | |
| 3 | - | |
| 4 | class __attribute__((visibility("default"))) QSGRectangleNode : public QSGGeometryNode | - |
| 5 | { | - |
| 6 | public: | - |
| 7 | ~QSGRectangleNode() override { } | - |
| 8 | - | |
| 9 | virtual void setRect(const QRectF &rect) = 0; | - |
| 10 | inline void setRect(qreal x, qreal y, qreal w, qreal h) { setRect(QRectF(x, y, w, h)); } never executed: end of block | 0 |
| 11 | virtual QRectF rect() const = 0; | - |
| 12 | - | |
| 13 | virtual void setColor(const QColor &color) = 0; | - |
| 14 | virtual QColor color() const = 0; | - |
| 15 | }; | - |
| 16 | - | |
| 17 | - | |
| Switch to Source code | Preprocessed file |