00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkPassThroughEdgeStrategy.h 00005 00006 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen 00007 All rights reserved. 00008 See Copyright.txt or http://www.kitware.com/Copyright.htm for details. 00009 00010 This software is distributed WITHOUT ANY WARRANTY; without even 00011 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00012 PURPOSE. See the above copyright notice for more information. 00013 00014 =========================================================================*/ 00015 /*---------------------------------------------------------------------------- 00016 Copyright (c) Sandia Corporation 00017 See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details. 00018 ----------------------------------------------------------------------------*/ 00030 #ifndef __vtkPassThroughEdgeStrategy_h 00031 #define __vtkPassThroughEdgeStrategy_h 00032 00033 #include "vtkEdgeLayoutStrategy.h" 00034 00035 class VTK_INFOVIS_EXPORT vtkPassThroughEdgeStrategy : public vtkEdgeLayoutStrategy 00036 { 00037 public: 00038 static vtkPassThroughEdgeStrategy* New(); 00039 vtkTypeMacro(vtkPassThroughEdgeStrategy,vtkEdgeLayoutStrategy); 00040 void PrintSelf(ostream& os, vtkIndent indent); 00041 00044 virtual void Layout(); 00045 00046 protected: 00047 vtkPassThroughEdgeStrategy(); 00048 ~vtkPassThroughEdgeStrategy(); 00049 00050 private: 00051 vtkPassThroughEdgeStrategy(const vtkPassThroughEdgeStrategy&); // Not implemented. 00052 void operator=(const vtkPassThroughEdgeStrategy&); // Not implemented. 00053 }; 00054 00055 #endif 00056