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.
33 lines
1022 B
33 lines
1022 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.
|
||
|
=========================================================================*/
|
||
|
// .NAME vtkLocalExample - Example class using VTK.
|
||
|
// .SECTION Description
|
||
|
// vtkLocalExample is a simple class that uses VTK. This class can be
|
||
|
// copied and modified to produce your own classes.
|
||
|
|
||
|
#ifndef __vtkLocalExample_h
|
||
|
#define __vtkLocalExample_h
|
||
|
|
||
|
#include "vtkLocalConfigure.h" // Include configuration header.
|
||
|
#include "vtkObject.h"
|
||
|
|
||
|
class VTK_vtkLocal_EXPORT vtkLocalExample : public vtkObject
|
||
|
{
|
||
|
public:
|
||
|
static vtkLocalExample* New();
|
||
|
vtkTypeRevisionMacro(vtkLocalExample, vtkObject);
|
||
|
void PrintSelf(ostream& os, vtkIndent indent);
|
||
|
|
||
|
protected:
|
||
|
vtkLocalExample();
|
||
|
~vtkLocalExample();
|
||
|
|
||
|
private:
|
||
|
vtkLocalExample(const vtkLocalExample&); // Not implemented.
|
||
|
void operator=(const vtkLocalExample&); // Not implemented.
|
||
|
};
|
||
|
|
||
|
#endif
|