mirror of
https://github.com/OpenFOAM/ThirdParty-6.git
synced 2025-12-08 06:57:43 +00:00
26 lines
796 B
C++
26 lines
796 B
C++
/*=========================================================================
|
|
This source has no copyright. It is intended to be copied by users
|
|
wishing to create their own VTK classes locally.
|
|
=========================================================================*/
|
|
#include "vtkLocalExample.h"
|
|
|
|
#include "vtkObjectFactory.h"
|
|
|
|
vtkStandardNewMacro(vtkLocalExample);
|
|
|
|
//----------------------------------------------------------------------------
|
|
vtkLocalExample::vtkLocalExample()
|
|
{
|
|
}
|
|
|
|
//----------------------------------------------------------------------------
|
|
vtkLocalExample::~vtkLocalExample()
|
|
{
|
|
}
|
|
|
|
//----------------------------------------------------------------------------
|
|
void vtkLocalExample::PrintSelf(ostream& os, vtkIndent indent)
|
|
{
|
|
this->Superclass::PrintSelf(os,indent);
|
|
}
|