[Insight-developers] itkNodeContainer and NodeContainer type

Julien Jomier jjomier at cs.unc.edu
Fri, 19 Mar 2004 14:26:29 -0500


Hi all,

I'm creating an itkTreeContainer and itkNodeContainer classes to better
support SpatialObjects. 
I'm having an issue with some of the existing classes because NodeContainer
is already defined as a type (in itkLevelSet.h for instance). I plan to
rename this type to NodeContainerType to avoid de confusion. Do you see any
possible problems with this renaming?

Moreover, I noticed that the wraping file wrap_itkLevelSet.cxx has the
following lines:

ITK_WRAP_OBJECT2(VectorContainer, unsigned int, itkLevelSetNodeF2,
itkNodeContainerF2);

should this be now:

ITK_WRAP_OBJECT2(VectorContainer, unsigned int, itkLevelSetNodeF2,
itkNodeContainerTypeF2);

?

Thanks for the help,

Julien