VTK
/Users/kitware/Dashboards/MyTests/VTK_BLD_Release_docs/Utilities/Doxygen/dox/Infovis/Parallel/vtkPBGLCollapseGraph.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    vtkPBGLCollapseGraph.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 ----------------------------------------------------------------------------*/
00032 #ifndef vtkPBGLCollapseGraph_h
00033 #define vtkPBGLCollapseGraph_h
00034 
00035 #include "vtkInfovisParallelModule.h" // For export macro
00036 #include "vtkGraphAlgorithm.h"
00037 
00038 #if !defined(VTK_LEGACY_REMOVE)
00039 class VTKINFOVISPARALLEL_EXPORT vtkPBGLCollapseGraph : public vtkGraphAlgorithm
00040 {
00041 public:
00042   static vtkPBGLCollapseGraph* New();
00043   vtkTypeMacro(vtkPBGLCollapseGraph,vtkGraphAlgorithm);
00044   void PrintSelf(ostream& os, vtkIndent indent);
00045 
00046 protected:
00047   vtkPBGLCollapseGraph();
00048   ~vtkPBGLCollapseGraph();
00049 
00050   virtual int RequestData(
00051     vtkInformation*,
00052     vtkInformationVector**,
00053     vtkInformationVector*);
00054 
00055 private:
00056   vtkPBGLCollapseGraph(const vtkPBGLCollapseGraph&); // Not implemented
00057   void operator=(const vtkPBGLCollapseGraph&);   // Not implemented
00058 };
00059 
00060 #endif //VTK_LEGACY_REMOVE
00061 #endif
00062