VTK  9.3.0
vtkRemoveIsolatedVertices.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2 // SPDX-FileCopyrightText: Copyright 2008 Sandia Corporation
3 // SPDX-License-Identifier: LicenseRef-BSD-3-Clause-Sandia-USGov
15 #ifndef vtkRemoveIsolatedVertices_h
16 #define vtkRemoveIsolatedVertices_h
17 
18 #include "vtkGraphAlgorithm.h"
19 #include "vtkInfovisCoreModule.h" // For export macro
20 
21 VTK_ABI_NAMESPACE_BEGIN
22 class vtkDataSet;
23 
24 class VTKINFOVISCORE_EXPORT vtkRemoveIsolatedVertices : public vtkGraphAlgorithm
25 {
26 public:
29  void PrintSelf(ostream& os, vtkIndent indent) override;
30 
31 protected:
34 
36 
37 private:
39  void operator=(const vtkRemoveIsolatedVertices&) = delete;
40 };
41 
42 VTK_ABI_NAMESPACE_END
43 #endif
abstract class to specify dataset behavior
Definition: vtkDataSet.h:53
Superclass for algorithms that produce only graph as output.
a simple class to control print indentation
Definition: vtkIndent.h:29
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
remove vertices of a vtkGraph with degree zero.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
static vtkRemoveIsolatedVertices * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
~vtkRemoveIsolatedVertices() override