ParaView-5.0.1: Added the source-tree to ThirdParty-dev and patched as described in the README file

Resolves bug-report http://bugs.openfoam.org/view.php?id=2098
This commit is contained in:
Henry Weller
2016-05-30 21:20:56 +01:00
parent 1cce60aa78
commit eba760a6d6
24640 changed files with 6366069 additions and 0 deletions

View File

@ -0,0 +1,75 @@
/*=========================================================================
Program: Visualization Toolkit
Module: vtkXMLDataHeaderPrivate.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
#ifndef vtkXMLDataHeaderPrivate_DoNotInclude
# error "do not include unless you know what you are doing"
#endif
#ifndef vtkXMLDataHeaderPrivate_h
#define vtkXMLDataHeaderPrivate_h
#include "vtkType.h"
#include <vector>
// Abstract interface using type vtkTypeUInt64 to access an array
// of either vtkTypeUInt32 or vtkTypeUInt64. Shared by vtkXMLWriter
// and vtkXMLDataParser to write/read binary data headers.
class vtkXMLDataHeader
{
public:
virtual void Resize(size_t count) = 0;
virtual vtkTypeUInt64 Get(size_t index) const = 0;
virtual bool Set(size_t index, vtkTypeUInt64 value) = 0;
virtual size_t WordSize() const = 0;
virtual size_t WordCount() const = 0;
virtual unsigned char* Data() = 0;
size_t DataSize() const { return this->WordCount()*this->WordSize(); }
virtual ~vtkXMLDataHeader() {}
static inline vtkXMLDataHeader* New(int width, size_t count);
};
template <typename T>
class vtkXMLDataHeaderImpl: public vtkXMLDataHeader
{
std::vector<T> Header;
public:
vtkXMLDataHeaderImpl(size_t n): Header(n, 0) {}
virtual void Resize(size_t count)
{ this->Header.resize(count, 0); }
virtual vtkTypeUInt64 Get(size_t index) const
{ return this->Header[index]; }
virtual bool Set(size_t index, vtkTypeUInt64 value)
{
this->Header[index] = T(value);
return vtkTypeUInt64(this->Header[index]) == value;
}
virtual size_t WordSize() const { return sizeof(T); }
virtual size_t WordCount() const { return this->Header.size(); }
virtual unsigned char* Data()
{ return reinterpret_cast<unsigned char*>(&this->Header[0]); }
};
vtkXMLDataHeader* vtkXMLDataHeader::New(int width, size_t count)
{
switch(width)
{
case 32: return new vtkXMLDataHeaderImpl<vtkTypeUInt32>(count);
case 64: return new vtkXMLDataHeaderImpl<vtkTypeUInt64>(count);
}
return 0;
}
#endif
// VTK-HeaderTest-Exclude: vtkXMLDataHeaderPrivate.h