VTK
|
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkConvertSelectionDomain.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 2008 Sandia Corporation. 00017 Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation, 00018 the U.S. Government retains certain rights in this software. 00019 -------------------------------------------------------------------------*/ 00040 #ifndef __vtkConvertSelectionDomain_h 00041 #define __vtkConvertSelectionDomain_h 00042 00043 #include "vtkViewsCoreModule.h" // For export macro 00044 #include "vtkPassInputTypeAlgorithm.h" 00045 00046 class vtkAnnotation; 00047 00048 class VTKVIEWSCORE_EXPORT vtkConvertSelectionDomain : public vtkPassInputTypeAlgorithm 00049 { 00050 public: 00051 static vtkConvertSelectionDomain *New(); 00052 vtkTypeMacro(vtkConvertSelectionDomain, vtkPassInputTypeAlgorithm); 00053 void PrintSelf(ostream& os, vtkIndent indent); 00054 00055 protected: 00056 vtkConvertSelectionDomain(); 00057 ~vtkConvertSelectionDomain(); 00058 00059 virtual int RequestData( 00060 vtkInformation *, 00061 vtkInformationVector **, 00062 vtkInformationVector *); 00063 00064 virtual int FillInputPortInformation( 00065 int port, vtkInformation* info); 00066 00067 virtual int FillOutputPortInformation( 00068 int port, vtkInformation* info); 00069 00070 private: 00071 vtkConvertSelectionDomain(const vtkConvertSelectionDomain&); // Not implemented. 00072 void operator=(const vtkConvertSelectionDomain&); // Not implemented. 00073 }; 00074 00075 #endif