VTK
dox/Graphics/vtkProbeSelectedLocations.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    vtkProbeSelectedLocations.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 =========================================================================*/
00027 #ifndef __vtkProbeSelectedLocations_h
00028 #define __vtkProbeSelectedLocations_h
00029 
00030 #include "vtkExtractSelectionBase.h"
00031 
00032 class VTK_GRAPHICS_EXPORT vtkProbeSelectedLocations : public vtkExtractSelectionBase
00033 {
00034 public:
00035   static vtkProbeSelectedLocations* New();
00036   vtkTypeMacro(vtkProbeSelectedLocations, vtkExtractSelectionBase);
00037   void PrintSelf(ostream& os, vtkIndent indent);
00038 
00039 //BTX
00040 protected:
00041   vtkProbeSelectedLocations();
00042   ~vtkProbeSelectedLocations();
00043 
00045 
00046   virtual int RequestDataObject(vtkInformation* request,
00047                                 vtkInformationVector** inputVector,
00048                                 vtkInformationVector* outputVector);
00050 
00051   int RequestData(vtkInformation *, vtkInformationVector **, 
00052     vtkInformationVector *);
00053 
00054 private:
00055   vtkProbeSelectedLocations(const vtkProbeSelectedLocations&); // Not implemented.
00056   void operator=(const vtkProbeSelectedLocations&); // Not implemented.
00057 //ETX
00058 };
00059 
00060 #endif
00061 
00062