| 69 | } |
| 70 | |
| 71 | int GammaRay::SGVertexModel::columnCount(const QModelIndex &parent) const |
| 72 | { |
| 73 | if (!m_geometry || parent.isValid()) |
| 74 | return 0; |
| 75 | |
| 76 | return m_geometry->attributeCount(); |
| 77 | } |
| 78 | |
| 79 | QVariant SGVertexModel::data(const QModelIndex &index, int role) const |
| 80 | { |
no test coverage detected