You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
859 B
27 lines
859 B
2 years ago
|
/*=========================================================================
|
||
|
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"
|
||
|
|
||
|
vtkCxxRevisionMacro(vtkLocalExample, "$Revision: 1.1.34.1 $");
|
||
|
vtkStandardNewMacro(vtkLocalExample);
|
||
|
|
||
|
//----------------------------------------------------------------------------
|
||
|
vtkLocalExample::vtkLocalExample()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
//----------------------------------------------------------------------------
|
||
|
vtkLocalExample::~vtkLocalExample()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
//----------------------------------------------------------------------------
|
||
|
void vtkLocalExample::PrintSelf(ostream& os, vtkIndent indent)
|
||
|
{
|
||
|
this->Superclass::PrintSelf(os,indent);
|
||
|
}
|