17#ifndef vtkPassThroughLayoutStrategy_h 
   18#define vtkPassThroughLayoutStrategy_h 
   21#include "vtkInfovisLayoutModule.h"  
   23VTK_ABI_NAMESPACE_BEGIN
 
abstract superclass for all graph layout strategies
 
a simple class to control print indentation
 
a layout strategy that does absolutely nothing
 
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
 
void Layout() override
This is the layout method where the graph that was set in SetGraph() is laid out.
 
vtkPassThroughLayoutStrategy()
 
int IsLayoutComplete() override
I'm an iterative layout so this method lets the caller know if I'm done laying out the graph.
 
void Initialize() override
This strategy sets up some data structures for faster processing of each Layout() call.
 
~vtkPassThroughLayoutStrategy() override
 
static vtkPassThroughLayoutStrategy * New()