VTK
dox/Graphics/vtkGraphGeodesicPath.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    vtkGraphGeodesicPath.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 =========================================================================*/
00023 #ifndef __vtkGraphGeodesicPath_h
00024 #define __vtkGraphGeodesicPath_h
00025 
00026 #include "vtkGeodesicPath.h"
00027 
00028 class vtkIdList;
00029 
00030 class VTK_GRAPHICS_EXPORT vtkGraphGeodesicPath : public vtkGeodesicPath
00031 {
00032 public:
00034 
00035   vtkTypeMacro(vtkGraphGeodesicPath,vtkGeodesicPath);
00036   void PrintSelf(ostream& os, vtkIndent indent);
00038 
00040 
00041   vtkGetMacro(StartVertex, vtkIdType);
00042   vtkSetMacro(StartVertex, vtkIdType);
00044 
00046 
00047   vtkGetMacro(EndVertex, vtkIdType);
00048   vtkSetMacro(EndVertex, vtkIdType);
00050 
00051 protected:
00052   vtkGraphGeodesicPath();
00053   ~vtkGraphGeodesicPath();
00054 
00055   vtkIdType StartVertex;
00056   vtkIdType EndVertex;
00057 
00058 private:
00059   vtkGraphGeodesicPath(const vtkGraphGeodesicPath&);  // Not implemented.
00060   void operator=(const vtkGraphGeodesicPath&);  // Not implemented.
00061 
00062 };
00063 
00064 #endif
00065