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,69 @@
/*=========================================================================
Program: ParaView
Module: vtkSIWriterProxy.h
Copyright (c) Kitware, Inc.
All rights reserved.
See Copyright.txt or http://www.paraview.org/HTML/Copyright.html 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.
=========================================================================*/
// .NAME vtkSIWriterProxy
// .SECTION Description
// ServerImplementation for WriterProxy
#ifndef vtkSIWriterProxy_h
#define vtkSIWriterProxy_h
#include "vtkPVServerImplementationCoreModule.h" //needed for exports
#include "vtkSISourceProxy.h"
class VTKPVSERVERIMPLEMENTATIONCORE_EXPORT vtkSIWriterProxy : public vtkSISourceProxy
{
public:
static vtkSIWriterProxy* New();
vtkTypeMacro(vtkSIWriterProxy, vtkSISourceProxy);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// These methods are called to add/remove input connections by
// vtkSIInputProperty. This indirection makes it possible for subclasses to
// insert VTK-algorithms in the input pipeline.
// Overridden to insert "CompleteArrays" filter in the pipeline.
virtual void AddInput(int input_port,
vtkAlgorithmOutput* connection, const char* method);
virtual void CleanInputs(const char* method);
// Description:
// Update the requested time for the pipeline. This needs to be
// separate than vtkSISourceProxy because there are no output
// ports to do this on.
virtual void UpdatePipelineTime(double time);
//BTX
protected:
vtkSIWriterProxy();
~vtkSIWriterProxy();
// Description:
// Creates the VTKObjects. Overridden to add post-filters to the pipeline.
virtual bool CreateVTKObjects(vtkSMMessage* message);
// Description:
// Read xml-attributes.
virtual bool ReadXMLAttributes(vtkPVXMLElement* element);
char* FileNameMethod;
vtkSetStringMacro(FileNameMethod);
private:
vtkSIWriterProxy(const vtkSIWriterProxy&); // Not implemented
void operator=(const vtkSIWriterProxy&); // Not implemented
//ETX
};
#endif