Skip to content

Commit

Permalink
COMP: PointsLocator wrapping on Windows
Browse files Browse the repository at this point in the history
Addresses:

```
itkPointsLocator: warning(4): ITK type not wrapped, or currently not known: itk::VectorContainer< unsigned long, itk::Point< float, 3 > >
```

Also use wrapping variables for `Point`, wrapped based on wrapping
settings.
  • Loading branch information
thewtex committed Jul 26, 2022
1 parent 835dc01 commit 1481c1e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Modules/Registration/Common/wrapping/itkPointsLocator.wrap
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
itk_wrap_class("itk::PointsLocator" POINTER_WITH_2_SUPERCLASSES)
itk_wrap_template("PS${ITKM_F}3" "itk::VectorContainer<${ITKT_UL}, itk::Point<float, 3> >")
foreach(d ${ITK_WRAP_IMAGE_DIMS})
foreach(t ${WRAP_ITK_REAL})
itk_wrap_template("VC${ITKM_IT}${ITKM_P${t}${d}}" "itk::VectorContainer<${ITKT_IT}, ${ITKT_P${t}${d}} >")
endforeach()
endforeach()
itk_end_wrap_class()

0 comments on commit 1481c1e

Please sign in to comment.