Sophie

Sophie

distrib > Mageia > 5 > i586 > media > core-release > by-pkgid > 82ac505190c212a37e5a9f824939c992 > files > 48

vtk-examples-6.0.0-8.mga5.i586.rpm

/*=========================================================================
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 "vtkLocalExampleModule.h" // export macro
#include "vtkObject.h"

class VTKLOCALEXAMPLE_EXPORT vtkLocalExample : public vtkObject
{
public:
  static vtkLocalExample* New();
  vtkTypeMacro(vtkLocalExample, vtkObject);
  void PrintSelf(ostream& os, vtkIndent indent);

protected:
  vtkLocalExample();
  ~vtkLocalExample();

private:
  vtkLocalExample(const vtkLocalExample&);  // Not implemented.
  void operator=(const vtkLocalExample&);  // Not implemented.
};

#endif