VTK
vtkGraphWeightFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkGraphWeightFilter.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
31 #ifndef vtkGraphWeightFilter_h
32 #define vtkGraphWeightFilter_h
33 
34 #include "vtkFiltersGeneralModule.h" // For export macro
35 #include "vtkGraphAlgorithm.h"
36 
37 class vtkGraph;
38 
39 class VTKFILTERSGENERAL_EXPORT vtkGraphWeightFilter : public vtkGraphAlgorithm
40 {
41 public:
43  void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
44 
45 protected:
47  ~vtkGraphWeightFilter() VTK_OVERRIDE {}
48 
51  vtkInformationVector *) VTK_OVERRIDE;
52 
57  virtual float ComputeWeight(vtkGraph* const graph, const vtkEdgeType& edge) const = 0;
58 
65  virtual bool CheckRequirements(vtkGraph* const graph) const;
66 
67 private:
68  vtkGraphWeightFilter(const vtkGraphWeightFilter&) VTK_DELETE_FUNCTION;
69  void operator=(const vtkGraphWeightFilter&) VTK_DELETE_FUNCTION;
70 };
71 
72 #endif
Base class for filters that weight graph edges.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce only graph as output.
Base class for graph data types.
Definition: vtkGraph.h:287
a simple class to control print indentation
Definition: vtkIndent.h:39
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called by the superclass.
Store zero or more vtkInformation instances.