Skip to content
Snippets Groups Projects
Verified Commit 37cac86a authored by Sankhesh Jhaveri's avatar Sankhesh Jhaveri :speech_balloon:
Browse files

Add doxygen macro override for Set/GetSmartPointerMacro

This is necessary so that the classes that use the
`Set/GetSmartPointerMacro` get documented properly with doxygen.
parent 46195b20
No related branches found
No related tags found
No related merge requests found
......@@ -136,6 +136,10 @@ PREDEFINED = "vtkSetMacro(name,type)= \
virtual void Set##name (type*);" \
"vtkGetObjectMacro(name,type)= \
virtual type *Get##name ();" \
"vtkSetSmartPointerMacro(name,type)= \
virtual void Set##name (type*);" \
"vtkGetSmartPointerMacro(name,type)= \
virtual type *Get##name ();" \
"vtkBooleanMacro(name,type)= \
virtual void name##On (); \
virtual void name##Off ();" \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment