00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00025 #ifndef __vtkPVCompositeBuffer_h
00026 #define __vtkPVCompositeBuffer_h
00027
00028 #include "vtkObject.h"
00029
00030 class vtkUnsignedCharArray;
00031 class vtkFloatArray;
00032
00033 class VTK_EXPORT vtkPVCompositeBuffer : public vtkObject
00034 {
00035 public:
00036 static vtkPVCompositeBuffer *New();
00037 vtkTypeRevisionMacro(vtkPVCompositeBuffer,vtkObject);
00038 void PrintSelf(ostream& os, vtkIndent indent);
00039
00042 vtkUnsignedCharArray* GetPData();
00043
00044 protected:
00045 vtkPVCompositeBuffer();
00046 ~vtkPVCompositeBuffer();
00047
00048
00049 friend class vtkPVCompositeUtilities;
00050
00051
00052 int UncompressedLength;
00053
00054 vtkFloatArray* ZData;
00055 vtkUnsignedCharArray* PData;
00056
00057 private:
00058 vtkPVCompositeBuffer(const vtkPVCompositeBuffer&);
00059 void operator=(const vtkPVCompositeBuffer&);
00060 };
00061
00062 #endif