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.
21 lines
521 B
21 lines
521 B
#ifndef __@VTK_MAKE_INSTANTIATOR_CLASS_NAME@_h
|
|
#define __@VTK_MAKE_INSTANTIATOR_CLASS_NAME@_h
|
|
|
|
#include "vtkInstantiator.h"
|
|
|
|
@HEADER_CONTENTS@
|
|
|
|
class @VTK_MAKE_INSTANTIATOR_EXPORT_MACRO@ @VTK_MAKE_INSTANTIATOR_CLASS_NAME@
|
|
{
|
|
public:
|
|
@VTK_MAKE_INSTANTIATOR_CLASS_NAME@();
|
|
~@VTK_MAKE_INSTANTIATOR_CLASS_NAME@();
|
|
private:
|
|
static void ClassInitialize();
|
|
static void ClassFinalize();
|
|
static unsigned int Count;
|
|
};
|
|
|
|
static @VTK_MAKE_INSTANTIATOR_CLASS_NAME@ @VTK_MAKE_INSTANTIATOR_CLASS_NAME@Initializer;
|
|
|
|
#endif
|
|
|