VTK
vtkStreamGraph.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkStreamGraph.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 =========================================================================*/
15 /*-------------------------------------------------------------------------
16  Copyright 2008 Sandia Corporation.
17  Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
18  the U.S. Government retains certain rights in this software.
19 -------------------------------------------------------------------------*/
41 #ifndef __vtkStreamGraph_h
42 #define __vtkStreamGraph_h
43 
44 #include "vtkGraphAlgorithm.h"
45 
46 class vtkBitArray;
47 class vtkMergeGraphs;
50 class vtkStringArray;
51 class vtkTable;
52 
54 {
55 public:
56  static vtkStreamGraph* New();
58  void PrintSelf(ostream& os, vtkIndent indent);
59 
61 
63  vtkSetMacro(UseEdgeWindow, bool);
64  vtkGetMacro(UseEdgeWindow, bool);
65  vtkBooleanMacro(UseEdgeWindow, bool);
67 
69 
70  vtkSetStringMacro(EdgeWindowArrayName);
71  vtkGetStringMacro(EdgeWindowArrayName);
73 
75 
78  vtkSetMacro(EdgeWindow, double);
79  vtkGetMacro(EdgeWindow, double);
81 
82 protected:
84  ~vtkStreamGraph();
85 
86  virtual int RequestData(
90 
94  double EdgeWindow;
96 
97 private:
98  vtkStreamGraph(const vtkStreamGraph&); // Not implemented
99  void operator=(const vtkStreamGraph&); // Not implemented
100 };
101 
102 #endif
103