Slicer
4.11
Slicer is a multi-platform, free and open source software package for visualization and medical image computing
|
Macros | |
#define | vtkMRMLPrintBeginMacro(os, indent) |
#define | vtkMRMLPrintBooleanMacro(propertyName) printOutputStream << printOutputIndent << #propertyName ": " << (this->Get##propertyName() ? "true" : "false") << "\n"; |
Macro for printing bool node property value. More... | |
#define | vtkMRMLPrintEndMacro() } |
This macro must be placed after the last value printing macro. More... | |
#define | vtkMRMLPrintEnumMacro(propertyName) printOutputStream << printOutputIndent << #propertyName ": " << (Get##propertyName##AsString(Get##propertyName())) << "\n"; |
Macro for printing enum node property value. More... | |
#define | vtkMRMLPrintFloatMacro(propertyName) printOutputStream << printOutputIndent << #propertyName ": " << this->Get##propertyName() << "\n"; |
Macro for printing floating-point (float or double) node property value. More... | |
#define | vtkMRMLPrintIntMacro(propertyName) printOutputStream << printOutputIndent << #propertyName ": " << this->Get##propertyName() << "\n"; |
Macro for printing int node property value. More... | |
#define | vtkMRMLPrintMatrix4x4Macro(propertyName) |
#define | vtkMRMLPrintObjectMacro(propertyName) |
#define | vtkMRMLPrintStdFloatVectorMacro(propertyName, vectorType) |
Macro for printing an iterable container (float or double) node property value. More... | |
#define | vtkMRMLPrintStdIntVectorMacro(propertyName, vectorType) |
Macro for printing an iterable container (int) node property value. More... | |
#define | vtkMRMLPrintStdStringMacro(propertyName) printOutputStream << printOutputIndent << #propertyName ": " << this->Get##propertyName() << "\n"; |
Macro for printing std::string node property value. More... | |
#define | vtkMRMLPrintStdStringVectorMacro(propertyName, vectorType) |
Macro for printing iterable container (of std::string) node property value. More... | |
#define | vtkMRMLPrintStringMacro(propertyName) printOutputStream << printOutputIndent << #propertyName ": " << (this->Get##propertyName() != nullptr ? this->Get##propertyName() : "(none)") << "\n"; |
Macro for printing char* node property value. More... | |
#define | vtkMRMLPrintVectorMacro(propertyName, vectorType, vectorSize) |
Macro for printing floating-point (float or double) vector node property value. More... | |
They are To be used in PrintSelf(ostream& os, vtkIndent indent) method. Arguments of value printing macros:
#define vtkMRMLPrintBeginMacro | ( | os, | |
indent | |||
) |
This macro must be placed before the first value printing macro.
Definition at line 482 of file vtkMRMLNodePropertyMacros.h.
#define vtkMRMLPrintBooleanMacro | ( | propertyName | ) | printOutputStream << printOutputIndent << #propertyName ": " << (this->Get##propertyName() ? "true" : "false") << "\n"; |
Macro for printing bool node property value.
Definition at line 492 of file vtkMRMLNodePropertyMacros.h.
#define vtkMRMLPrintEndMacro | ( | ) | } |
This macro must be placed after the last value printing macro.
Definition at line 488 of file vtkMRMLNodePropertyMacros.h.
#define vtkMRMLPrintEnumMacro | ( | propertyName | ) | printOutputStream << printOutputIndent << #propertyName ": " << (Get##propertyName##AsString(Get##propertyName())) << "\n"; |
Macro for printing enum node property value.
Definition at line 504 of file vtkMRMLNodePropertyMacros.h.
#define vtkMRMLPrintFloatMacro | ( | propertyName | ) | printOutputStream << printOutputIndent << #propertyName ": " << this->Get##propertyName() << "\n"; |
Macro for printing floating-point (float or double) node property value.
Definition at line 512 of file vtkMRMLNodePropertyMacros.h.
#define vtkMRMLPrintIntMacro | ( | propertyName | ) | printOutputStream << printOutputIndent << #propertyName ": " << this->Get##propertyName() << "\n"; |
Macro for printing int node property value.
Definition at line 508 of file vtkMRMLNodePropertyMacros.h.
#define vtkMRMLPrintMatrix4x4Macro | ( | propertyName | ) |
Definition at line 582 of file vtkMRMLNodePropertyMacros.h.
#define vtkMRMLPrintObjectMacro | ( | propertyName | ) |
Definition at line 597 of file vtkMRMLNodePropertyMacros.h.
#define vtkMRMLPrintStdFloatVectorMacro | ( | propertyName, | |
vectorType | |||
) |
Macro for printing an iterable container (float or double) node property value.
Definition at line 535 of file vtkMRMLNodePropertyMacros.h.
#define vtkMRMLPrintStdIntVectorMacro | ( | propertyName, | |
vectorType | |||
) |
Macro for printing an iterable container (int) node property value.
Definition at line 551 of file vtkMRMLNodePropertyMacros.h.
#define vtkMRMLPrintStdStringMacro | ( | propertyName | ) | printOutputStream << printOutputIndent << #propertyName ": " << this->Get##propertyName() << "\n"; |
Macro for printing std::string node property value.
Definition at line 500 of file vtkMRMLNodePropertyMacros.h.
#define vtkMRMLPrintStdStringVectorMacro | ( | propertyName, | |
vectorType | |||
) |
Macro for printing iterable container (of std::string) node property value.
Definition at line 567 of file vtkMRMLNodePropertyMacros.h.
#define vtkMRMLPrintStringMacro | ( | propertyName | ) | printOutputStream << printOutputIndent << #propertyName ": " << (this->Get##propertyName() != nullptr ? this->Get##propertyName() : "(none)") << "\n"; |
Macro for printing char* node property value.
Definition at line 496 of file vtkMRMLNodePropertyMacros.h.
#define vtkMRMLPrintVectorMacro | ( | propertyName, | |
vectorType, | |||
vectorSize | |||
) |
Macro for printing floating-point (float or double) vector node property value.
Definition at line 516 of file vtkMRMLNodePropertyMacros.h.