mirror of
https://github.com/OpenFOAM/ThirdParty-6.git
synced 2025-12-08 06:57:43 +00:00
47 lines
1.5 KiB
C++
47 lines
1.5 KiB
C++
/*=========================================================================
|
|
|
|
Program: Visualization Toolkit
|
|
Module: vtkDataSetToPiston.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.
|
|
|
|
=========================================================================*/
|
|
// .NAME vtkPVDataSetToPiston - a crutch for PVDataInformation
|
|
// .SECTION Description
|
|
// This class doesn't do anything different than it's parent, except
|
|
// other than make sure that vtkPistonInformationHelper is registers.
|
|
// TODO: change plugin autogenerated code to have a hook where that
|
|
// can happen and get rid of this class.
|
|
//
|
|
// .SECTION See Also
|
|
// vtkPistonInformationHelper.h vtkPVDataInformation.h
|
|
|
|
#ifndef vtkPVDataSetToPiston_h
|
|
#define vtkPVDataSetToPiston_h
|
|
|
|
#include "vtkDataSetToPiston.h"
|
|
|
|
class VTK_EXPORT vtkPVDataSetToPiston : public vtkDataSetToPiston
|
|
{
|
|
public:
|
|
static vtkPVDataSetToPiston *New();
|
|
vtkTypeMacro(vtkPVDataSetToPiston,vtkDataSetToPiston);
|
|
void PrintSelf(ostream& os, vtkIndent indent);
|
|
|
|
protected:
|
|
vtkPVDataSetToPiston();
|
|
~vtkPVDataSetToPiston();
|
|
|
|
private:
|
|
vtkPVDataSetToPiston(const vtkPVDataSetToPiston&); // Not implemented.
|
|
void operator=(const vtkPVDataSetToPiston&); // Not implemented.
|
|
};
|
|
|
|
#endif
|