You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
2.0 KiB
C++
70 lines
2.0 KiB
C++
/*=========================================================================
|
|
|
|
Program: Visualization Toolkit
|
|
Module: vtkPipelineGraphSource.h
|
|
|
|
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
|
|
All rights reserved.
|
|
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
PURPOSE. See the above copyright notice for more information.
|
|
|
|
=========================================================================*/
|
|
/**
|
|
* @class vtkPipelineGraphSource
|
|
* @brief a graph constructed from a VTK pipeline
|
|
*
|
|
*
|
|
*/
|
|
|
|
#ifndef vtkPipelineGraphSource_h
|
|
#define vtkPipelineGraphSource_h
|
|
|
|
#include "vtkDirectedGraphAlgorithm.h"
|
|
#include "vtkInfovisCoreModule.h" // For export macro
|
|
#include "vtkStdString.h"
|
|
|
|
class vtkCollection;
|
|
|
|
class VTKINFOVISCORE_EXPORT vtkPipelineGraphSource : public vtkDirectedGraphAlgorithm
|
|
{
|
|
public:
|
|
static vtkPipelineGraphSource* New();
|
|
vtkTypeMacro(vtkPipelineGraphSource, vtkDirectedGraphAlgorithm);
|
|
void PrintSelf(ostream& os, vtkIndent indent) override;
|
|
|
|
void AddSink(vtkObject* object);
|
|
void RemoveSink(vtkObject* object);
|
|
|
|
/**
|
|
* Generates a GraphViz DOT file that describes the VTK pipeline
|
|
* terminating at the given sink.
|
|
*/
|
|
static void PipelineToDot(
|
|
vtkAlgorithm* sink, ostream& output, const vtkStdString& graph_name = "");
|
|
/**
|
|
* Generates a GraphViz DOT file that describes the VTK pipeline
|
|
* terminating at the given sinks.
|
|
*/
|
|
static void PipelineToDot(
|
|
vtkCollection* sinks, ostream& output, const vtkStdString& graph_name = "");
|
|
|
|
protected:
|
|
vtkPipelineGraphSource();
|
|
~vtkPipelineGraphSource() override;
|
|
|
|
int RequestData(vtkInformation*, vtkInformationVector**, vtkInformationVector*) override;
|
|
|
|
vtkCollection* Sinks;
|
|
|
|
private:
|
|
vtkPipelineGraphSource(const vtkPipelineGraphSource&) = delete;
|
|
void operator=(const vtkPipelineGraphSource&) = delete;
|
|
};
|
|
|
|
#endif
|
|
|
|
// VTK-HeaderTest-Exclude: vtkPipelineGraphSource.h
|