mirror of
https://github.com/OpenFOAM/ThirdParty-6.git
synced 2025-12-08 06:57:43 +00:00
70 lines
2.2 KiB
C++
70 lines
2.2 KiB
C++
/*=========================================================================
|
|
|
|
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
|