VTK
|
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkInformationDoubleVectorKey.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 =========================================================================*/ 00025 #ifndef vtkInformationDoubleVectorKey_h 00026 #define vtkInformationDoubleVectorKey_h 00027 00028 #include "vtkCommonCoreModule.h" // For export macro 00029 #include "vtkInformationKey.h" 00030 00031 #include "vtkCommonInformationKeyManager.h" // Manage instances of this type. 00032 00033 class VTKCOMMONCORE_EXPORT vtkInformationDoubleVectorKey : public vtkInformationKey 00034 { 00035 public: 00036 vtkTypeMacro(vtkInformationDoubleVectorKey,vtkInformationKey); 00037 void PrintSelf(ostream& os, vtkIndent indent); 00038 00039 vtkInformationDoubleVectorKey(const char* name, const char* location, 00040 int length=-1); 00041 ~vtkInformationDoubleVectorKey(); 00042 00044 00047 static vtkInformationDoubleVectorKey* MakeKey(const char* name, const char* location, 00048 int length=-1) 00049 { 00050 return new vtkInformationDoubleVectorKey(name, location, length); 00051 } 00053 00055 00057 void Append(vtkInformation* info, double value); 00058 void Set(vtkInformation* info, double* value, int length); 00059 double* Get(vtkInformation* info); 00060 double Get(vtkInformation* info, int idx); 00061 void Get(vtkInformation* info, double* value); 00062 int Length(vtkInformation* info); 00064 00068 virtual void ShallowCopy(vtkInformation* from, vtkInformation* to); 00069 00071 virtual void Print(ostream& os, vtkInformation* info); 00072 00073 protected: 00074 // The required length of the vector value (-1 is no restriction). 00075 int RequiredLength; 00076 00077 private: 00078 vtkInformationDoubleVectorKey(const vtkInformationDoubleVectorKey&); // Not implemented. 00079 void operator=(const vtkInformationDoubleVectorKey&); // Not implemented. 00080 }; 00081 00082 #endif