-
Notifications
You must be signed in to change notification settings - Fork 0
/
vtkTreeVertexToEdgeSelection.h
46 lines (34 loc) · 1.15 KB
/
vtkTreeVertexToEdgeSelection.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Copyright 2009 Sandia Corporation, Kitware Inc.
// See LICENSE.txt for details.
// .NAME vtkTreeVertexToEdgeSelection - Converts tree vertex selection to edge
// selection.
//
// .SECTION Description
#ifndef __vtkTreeVertexToEdgeSelection_h
#define __vtkTreeVertexToEdgeSelection_h
#include "vtkSelectionAlgorithm.h"
class vtkTree;
class vtkTreeVertexToEdgeSelectionInternals;
class vtkTreeVertexToEdgeSelection : public vtkSelectionAlgorithm
{
public:
static vtkTreeVertexToEdgeSelection* New();
vtkTypeRevisionMacro(vtkTreeVertexToEdgeSelection, vtkSelectionAlgorithm);
void PrintSelf(ostream& os, vtkIndent indent);
protected:
vtkTreeVertexToEdgeSelection();
~vtkTreeVertexToEdgeSelection();
virtual int FillInputPortInformation(
int port, vtkInformation* info);
int RequestData(
vtkInformation*,
vtkInformationVector**,
vtkInformationVector*);
vtkTreeVertexToEdgeSelectionInternals* Internals;
vtkTree* Tree;
unsigned long TreeMTime;
private:
vtkTreeVertexToEdgeSelection(const vtkTreeVertexToEdgeSelection&); // Not implemented
void operator=(const vtkTreeVertexToEdgeSelection&); // Not implemented
};
#endif