00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: $RCSfile: vtkInformationExecutiveKey.h,v $ 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 =========================================================================*/ 00032 #ifndef __vtkInformationExecutiveKey_h 00033 #define __vtkInformationExecutiveKey_h 00034 00035 #include "vtkInformationKey.h" 00036 00037 class vtkExecutive; 00038 00039 class VTK_FILTERING_EXPORT vtkInformationExecutiveKey : public vtkInformationKey 00040 { 00041 public: 00042 vtkTypeRevisionMacro(vtkInformationExecutiveKey,vtkInformationKey); 00043 void PrintSelf(ostream& os, vtkIndent indent); 00044 00045 vtkInformationExecutiveKey(const char* name, const char* location); 00046 ~vtkInformationExecutiveKey(); 00047 00049 00051 void Set(vtkInformation* info, vtkExecutive*); 00052 vtkExecutive* Get(vtkInformation* info); 00053 int Has(vtkInformation* info); 00055 00059 virtual void Copy(vtkInformation* from, vtkInformation* to); 00060 00062 virtual void Report(vtkInformation* info, vtkGarbageCollector* collector); 00063 00064 private: 00065 vtkInformationExecutiveKey(const vtkInformationExecutiveKey&); // Not implemented. 00066 void operator=(const vtkInformationExecutiveKey&); // Not implemented. 00067 }; 00068 00069 #endif