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
24#ifndef vtkRemoveIsolatedVertices_h
25#define vtkRemoveIsolatedVertices_h
26
27#include "vtkGraphAlgorithm.h"
28#include "vtkInfovisCoreModule.h" // For export macro
29
30VTK_ABI_NAMESPACE_BEGIN
31class vtkDataSet;
32
33class VTKINFOVISCORE_EXPORT vtkRemoveIsolatedVertices : public vtkGraphAlgorithm
34{
35public:
38 void PrintSelf(ostream& os, vtkIndent indent) override;
39
40protected:
43
45
46private:
48 void operator=(const vtkRemoveIsolatedVertices&) = delete;
49};
50
51VTK_ABI_NAMESPACE_END
52#endif
abstract class to specify dataset behavior
Definition vtkDataSet.h:62
Superclass for algorithms that produce only graph as output.
a simple class to control print indentation
Definition vtkIndent.h:38
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.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkRemoveIsolatedVertices * New()
~vtkRemoveIsolatedVertices() override