Hello,<br>
<br>
How should I use the itkGetMacro variables of a filter called lets say
itkMST. I am writing a filter in which I have the private variable
m_SpanningTree. I have a statement called <br>
<br>
ItkGetMacro(SpanningTree,ParentNodeType);<br>
<br>
In the .cxx file that I am using as an example I have written the statement:<br>
MST&lt;ImageType,GraphType&gt;<br>
ParentNodeType msp;<br>
msp= mst-&gt;GetSpanningTree();<br>
<br>
When I compile this it tells me that it can't recognise the operator=(ParentNodeType*).<br>
<br>
What exactly should I do to correct this?<br>
<br>
Sonali<br>
<br>