| 261 | }; |
| 262 | |
| 263 | struct vtkEdgeType : vtkEdgeBase |
| 264 | { |
| 265 | vtkEdgeType() = default; |
| 266 | vtkEdgeType(vtkIdType s, vtkIdType t, vtkIdType id) |
| 267 | : vtkEdgeBase(id) |
| 268 | , Source(s) |
| 269 | , Target(t) |
| 270 | { |
| 271 | } |
| 272 | vtkIdType Source; |
| 273 | vtkIdType Target; |
| 274 | }; |
| 275 | |
| 276 | class VTKCOMMONDATAMODEL_EXPORT VTK_MARSHALMANUAL vtkGraph : public vtkDataObject |
| 277 | { |
no outgoing calls
no test coverage detected