VTK  9.3.20240418
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
34 #ifndef vtkRemoveIsolatedVertices_h
35 #define vtkRemoveIsolatedVertices_h
36 
37 #include "vtkGraphAlgorithm.h"
38 #include "vtkInfovisCoreModule.h" // For export macro
39 
40 VTK_ABI_NAMESPACE_BEGIN
41 class vtkDataSet;
42 
43 class VTKINFOVISCORE_EXPORT vtkRemoveIsolatedVertices : public vtkGraphAlgorithm
44 {
45 public:
48  void PrintSelf(ostream& os, vtkIndent indent) override;
49 
50 protected:
53 
55 
56 private:
58  void operator=(const vtkRemoveIsolatedVertices&) = delete;
59 };
60 
61 VTK_ABI_NAMESPACE_END
62 #endif
abstract class to specify dataset behavior
Definition: vtkDataSet.h:166
Superclass for algorithms that produce only graph as output.
a simple class to control print indentation
Definition: vtkIndent.h:108
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