Slicer  4.10
Slicer is a multi-platform, free and open source software package for visualization and medical image computing
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
Macros
vtkAddonSetGet.h File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define vtkGetStdVectorMacro(name, type)
 
#define vtkSetStdVectorMacro(name, type)
 

Macro Definition Documentation

◆ vtkGetStdVectorMacro

#define vtkGetStdVectorMacro (   name,
  type 
)
Value:
virtual type Get##name () { \
return this->name; \
}

Definition at line 46 of file vtkAddonSetGet.h.

◆ vtkSetStdVectorMacro

#define vtkSetStdVectorMacro (   name,
  type 
)
Value:
virtual void Set##name (type _arg) \
{ \
if (this->name != _arg) \
{ \
this->name = _arg; \
this->Modified(); \
} \
}

vtkAddonSetGet

vtkAddonSetGet adds additional Set/Get macros for currently unsupported types Types: stl containers,

Definition at line 32 of file vtkAddonSetGet.h.