Files
ThirdParty-6/ParaView-5.0.1/Plugins/Piston/vtkPVDataSetToPiston.h

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