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
21VTK_ABI_NAMESPACE_BEGIN
22class vtkDataSet;
23
24class VTKINFOVISCORE_EXPORT vtkRemoveIsolatedVertices : public vtkGraphAlgorithm
25{
26public:
29 void PrintSelf(ostream& os, vtkIndent indent) override;
30
31protected:
34
36
37private:
39 void operator=(const vtkRemoveIsolatedVertices&) = delete;
40};
41
42VTK_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.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkRemoveIsolatedVertices * New()
~vtkRemoveIsolatedVertices() override