VTK  9.3.20240418
Macros
vtkAutoInit.h File Reference
#include "vtkABINamespace.h"
#include "vtkDebugLeaksManager.h"
#include "vtkTimeStamp.h"
Include dependency graph for vtkAutoInit.h:

Go to the source code of this file.

Macros

#define VTK_MODULE_AUTOINIT   VTK_AUTOINIT
 
#define VTK_AUTOINIT(M)   VTK_AUTOINIT0(M, M##_AUTOINIT)
 
#define VTK_AUTOINIT0(M, T)   VTK_AUTOINIT1(M, T)
 
#define VTK_AUTOINIT1(M, T)
 
#define VTK_AUTOINIT_DECLARE_0()
 
#define VTK_AUTOINIT_DECLARE_1(t1)   VTK_AUTOINIT_DECLARE_0() VTK_AUTOINIT_DECLARE(t1)
 
#define VTK_AUTOINIT_DECLARE_2(t1, t2)   VTK_AUTOINIT_DECLARE_1(t1) VTK_AUTOINIT_DECLARE(t2)
 
#define VTK_AUTOINIT_DECLARE_3(t1, t2, t3)   VTK_AUTOINIT_DECLARE_2(t1, t2) VTK_AUTOINIT_DECLARE(t3)
 
#define VTK_AUTOINIT_DECLARE_4(t1, t2, t3, t4)    VTK_AUTOINIT_DECLARE_3(t1, t2, t3) VTK_AUTOINIT_DECLARE(t4)
 
#define VTK_AUTOINIT_DECLARE_5(t1, t2, t3, t4, t5)    VTK_AUTOINIT_DECLARE_4(t1, t2, t3, t4) VTK_AUTOINIT_DECLARE(t5)
 
#define VTK_AUTOINIT_DECLARE_6(t1, t2, t3, t4, t5, t6)    VTK_AUTOINIT_DECLARE_5(t1, t2, t3, t4, t5) VTK_AUTOINIT_DECLARE(t6)
 
#define VTK_AUTOINIT_DECLARE_7(t1, t2, t3, t4, t5, t6, t7)    VTK_AUTOINIT_DECLARE_6(t1, t2, t3, t4, t5, t6) VTK_AUTOINIT_DECLARE(t7)
 
#define VTK_AUTOINIT_DECLARE_8(t1, t2, t3, t4, t5, t6, t7, t8)    VTK_AUTOINIT_DECLARE_7(t1, t2, t3, t4, t5, t6, t7) VTK_AUTOINIT_DECLARE(t8)
 
#define VTK_AUTOINIT_DECLARE_9(t1, t2, t3, t4, t5, t6, t7, t8, t9)    VTK_AUTOINIT_DECLARE_8(t1, t2, t3, t4, t5, t6, t7, t8) VTK_AUTOINIT_DECLARE(t9)
 
#define VTK_AUTOINIT_DECLARE(M)
 
#define VTK_AUTOINIT_CONSTRUCT_0()
 
#define VTK_AUTOINIT_CONSTRUCT_1(t1)   VTK_AUTOINIT_CONSTRUCT_0() VTK_AUTOINIT_CONSTRUCT(t1)
 
#define VTK_AUTOINIT_CONSTRUCT_2(t1, t2)   VTK_AUTOINIT_CONSTRUCT_1(t1) VTK_AUTOINIT_CONSTRUCT(t2)
 
#define VTK_AUTOINIT_CONSTRUCT_3(t1, t2, t3)    VTK_AUTOINIT_CONSTRUCT_2(t1, t2) VTK_AUTOINIT_CONSTRUCT(t3)
 
#define VTK_AUTOINIT_CONSTRUCT_4(t1, t2, t3, t4)    VTK_AUTOINIT_CONSTRUCT_3(t1, t2, t3) VTK_AUTOINIT_CONSTRUCT(t4)
 
#define VTK_AUTOINIT_CONSTRUCT_5(t1, t2, t3, t4, t5)    VTK_AUTOINIT_CONSTRUCT_4(t1, t2, t3, t4) VTK_AUTOINIT_CONSTRUCT(t5)
 
#define VTK_AUTOINIT_CONSTRUCT_6(t1, t2, t3, t4, t5, t6)    VTK_AUTOINIT_CONSTRUCT_5(t1, t2, t3, t4, t5) VTK_AUTOINIT_CONSTRUCT(t6)
 
#define VTK_AUTOINIT_CONSTRUCT_7(t1, t2, t3, t4, t5, t6, t7)    VTK_AUTOINIT_CONSTRUCT_6(t1, t2, t3, t4, t5, t6) VTK_AUTOINIT_CONSTRUCT(t7)
 
#define VTK_AUTOINIT_CONSTRUCT_8(t1, t2, t3, t4, t5, t6, t7, t8)    VTK_AUTOINIT_CONSTRUCT_7(t1, t2, t3, t4, t5, t6, t7) VTK_AUTOINIT_CONSTRUCT(t8)
 
#define VTK_AUTOINIT_CONSTRUCT_9(t1, t2, t3, t4, t5, t6, t7, t8, t9)    VTK_AUTOINIT_CONSTRUCT_8(t1, t2, t3, t4, t5, t6, t7, t8) VTK_AUTOINIT_CONSTRUCT(t9)
 
#define VTK_AUTOINIT_CONSTRUCT(M)   M##_AutoInit_Construct();
 
#define VTK_MODULE_INIT(M)
 

Macro Definition Documentation

◆ VTK_MODULE_AUTOINIT

#define VTK_MODULE_AUTOINIT   VTK_AUTOINIT

Definition at line 10 of file vtkAutoInit.h.

◆ VTK_AUTOINIT

#define VTK_AUTOINIT (   M)    VTK_AUTOINIT0(M, M##_AUTOINIT)

Definition at line 12 of file vtkAutoInit.h.

◆ VTK_AUTOINIT0

#define VTK_AUTOINIT0 (   M,
 
)    VTK_AUTOINIT1(M, T)

Definition at line 13 of file vtkAutoInit.h.

◆ VTK_AUTOINIT1

#define VTK_AUTOINIT1 (   M,
 
)
Value:
/* Declare every <mod>_AutoInit_Construct function. */ \
VTK_AUTOINIT_DECLARE_##T namespace \
{ \
static struct M##_AutoInit \
{ \
/* Call every <mod>_AutoInit_Construct during initialization. */ \
M##_AutoInit() { VTK_AUTOINIT_CONSTRUCT_##T } \
} M##_AutoInit_Instance; /* NOLINT(misc-definitions-in-headers) */ \
}

Definition at line 14 of file vtkAutoInit.h.

◆ VTK_AUTOINIT_DECLARE_0

#define VTK_AUTOINIT_DECLARE_0 ( )

Definition at line 25 of file vtkAutoInit.h.

◆ VTK_AUTOINIT_DECLARE_1

#define VTK_AUTOINIT_DECLARE_1 (   t1)    VTK_AUTOINIT_DECLARE_0() VTK_AUTOINIT_DECLARE(t1)

Definition at line 26 of file vtkAutoInit.h.

◆ VTK_AUTOINIT_DECLARE_2

#define VTK_AUTOINIT_DECLARE_2 (   t1,
  t2 
)    VTK_AUTOINIT_DECLARE_1(t1) VTK_AUTOINIT_DECLARE(t2)

Definition at line 27 of file vtkAutoInit.h.

◆ VTK_AUTOINIT_DECLARE_3

#define VTK_AUTOINIT_DECLARE_3 (   t1,
  t2,
  t3 
)    VTK_AUTOINIT_DECLARE_2(t1, t2) VTK_AUTOINIT_DECLARE(t3)

Definition at line 28 of file vtkAutoInit.h.

◆ VTK_AUTOINIT_DECLARE_4

#define VTK_AUTOINIT_DECLARE_4 (   t1,
  t2,
  t3,
  t4 
)     VTK_AUTOINIT_DECLARE_3(t1, t2, t3) VTK_AUTOINIT_DECLARE(t4)

Definition at line 29 of file vtkAutoInit.h.

◆ VTK_AUTOINIT_DECLARE_5

#define VTK_AUTOINIT_DECLARE_5 (   t1,
  t2,
  t3,
  t4,
  t5 
)     VTK_AUTOINIT_DECLARE_4(t1, t2, t3, t4) VTK_AUTOINIT_DECLARE(t5)

Definition at line 31 of file vtkAutoInit.h.

◆ VTK_AUTOINIT_DECLARE_6

#define VTK_AUTOINIT_DECLARE_6 (   t1,
  t2,
  t3,
  t4,
  t5,
  t6 
)     VTK_AUTOINIT_DECLARE_5(t1, t2, t3, t4, t5) VTK_AUTOINIT_DECLARE(t6)

Definition at line 33 of file vtkAutoInit.h.

◆ VTK_AUTOINIT_DECLARE_7

#define VTK_AUTOINIT_DECLARE_7 (   t1,
  t2,
  t3,
  t4,
  t5,
  t6,
  t7 
)     VTK_AUTOINIT_DECLARE_6(t1, t2, t3, t4, t5, t6) VTK_AUTOINIT_DECLARE(t7)

Definition at line 35 of file vtkAutoInit.h.

◆ VTK_AUTOINIT_DECLARE_8

#define VTK_AUTOINIT_DECLARE_8 (   t1,
  t2,
  t3,
  t4,
  t5,
  t6,
  t7,
  t8 
)     VTK_AUTOINIT_DECLARE_7(t1, t2, t3, t4, t5, t6, t7) VTK_AUTOINIT_DECLARE(t8)

Definition at line 37 of file vtkAutoInit.h.

◆ VTK_AUTOINIT_DECLARE_9

#define VTK_AUTOINIT_DECLARE_9 (   t1,
  t2,
  t3,
  t4,
  t5,
  t6,
  t7,
  t8,
  t9 
)     VTK_AUTOINIT_DECLARE_8(t1, t2, t3, t4, t5, t6, t7, t8) VTK_AUTOINIT_DECLARE(t9)

Definition at line 39 of file vtkAutoInit.h.

◆ VTK_AUTOINIT_DECLARE

#define VTK_AUTOINIT_DECLARE (   M)
Value:
VTK_ABI_NAMESPACE_BEGIN void M##_AutoInit_Construct(); \
VTK_ABI_NAMESPACE_END

Definition at line 41 of file vtkAutoInit.h.

◆ VTK_AUTOINIT_CONSTRUCT_0

#define VTK_AUTOINIT_CONSTRUCT_0 ( )

Definition at line 45 of file vtkAutoInit.h.

◆ VTK_AUTOINIT_CONSTRUCT_1

#define VTK_AUTOINIT_CONSTRUCT_1 (   t1)    VTK_AUTOINIT_CONSTRUCT_0() VTK_AUTOINIT_CONSTRUCT(t1)

Definition at line 46 of file vtkAutoInit.h.

◆ VTK_AUTOINIT_CONSTRUCT_2

#define VTK_AUTOINIT_CONSTRUCT_2 (   t1,
  t2 
)    VTK_AUTOINIT_CONSTRUCT_1(t1) VTK_AUTOINIT_CONSTRUCT(t2)

Definition at line 47 of file vtkAutoInit.h.

◆ VTK_AUTOINIT_CONSTRUCT_3

#define VTK_AUTOINIT_CONSTRUCT_3 (   t1,
  t2,
  t3 
)     VTK_AUTOINIT_CONSTRUCT_2(t1, t2) VTK_AUTOINIT_CONSTRUCT(t3)

Definition at line 48 of file vtkAutoInit.h.

◆ VTK_AUTOINIT_CONSTRUCT_4

#define VTK_AUTOINIT_CONSTRUCT_4 (   t1,
  t2,
  t3,
  t4 
)     VTK_AUTOINIT_CONSTRUCT_3(t1, t2, t3) VTK_AUTOINIT_CONSTRUCT(t4)

Definition at line 50 of file vtkAutoInit.h.

◆ VTK_AUTOINIT_CONSTRUCT_5

#define VTK_AUTOINIT_CONSTRUCT_5 (   t1,
  t2,
  t3,
  t4,
  t5 
)     VTK_AUTOINIT_CONSTRUCT_4(t1, t2, t3, t4) VTK_AUTOINIT_CONSTRUCT(t5)

Definition at line 52 of file vtkAutoInit.h.

◆ VTK_AUTOINIT_CONSTRUCT_6

#define VTK_AUTOINIT_CONSTRUCT_6 (   t1,
  t2,
  t3,
  t4,
  t5,
  t6 
)     VTK_AUTOINIT_CONSTRUCT_5(t1, t2, t3, t4, t5) VTK_AUTOINIT_CONSTRUCT(t6)

Definition at line 54 of file vtkAutoInit.h.

◆ VTK_AUTOINIT_CONSTRUCT_7

#define VTK_AUTOINIT_CONSTRUCT_7 (   t1,
  t2,
  t3,
  t4,
  t5,
  t6,
  t7 
)     VTK_AUTOINIT_CONSTRUCT_6(t1, t2, t3, t4, t5, t6) VTK_AUTOINIT_CONSTRUCT(t7)

Definition at line 56 of file vtkAutoInit.h.

◆ VTK_AUTOINIT_CONSTRUCT_8

#define VTK_AUTOINIT_CONSTRUCT_8 (   t1,
  t2,
  t3,
  t4,
  t5,
  t6,
  t7,
  t8 
)     VTK_AUTOINIT_CONSTRUCT_7(t1, t2, t3, t4, t5, t6, t7) VTK_AUTOINIT_CONSTRUCT(t8)

Definition at line 58 of file vtkAutoInit.h.

◆ VTK_AUTOINIT_CONSTRUCT_9

#define VTK_AUTOINIT_CONSTRUCT_9 (   t1,
  t2,
  t3,
  t4,
  t5,
  t6,
  t7,
  t8,
  t9 
)     VTK_AUTOINIT_CONSTRUCT_8(t1, t2, t3, t4, t5, t6, t7, t8) VTK_AUTOINIT_CONSTRUCT(t9)

Definition at line 60 of file vtkAutoInit.h.

◆ VTK_AUTOINIT_CONSTRUCT

#define VTK_AUTOINIT_CONSTRUCT (   M)    M##_AutoInit_Construct();

Definition at line 62 of file vtkAutoInit.h.

◆ VTK_MODULE_INIT

#define VTK_MODULE_INIT (   M)
Value:
namespace \
{ \
static struct M##_ModuleInit \
{ \
/* Call <mod>_AutoInit_Construct during initialization. */ \
M##_ModuleInit() { VTK_AUTOINIT_CONSTRUCT(M) } \
} M##_ModuleInit_Instance; \
}
#define VTK_AUTOINIT_DECLARE(M)
Definition: vtkAutoInit.h:41
#define VTK_AUTOINIT_CONSTRUCT(M)
Definition: vtkAutoInit.h:62

Definition at line 77 of file vtkAutoInit.h.