<div dir="ltr">Torleif-<br><br>Thanks for the detail description. I have committed a fix to cvs.<br><br>Please give it a try and let us know if it solves your problem<br><br>-Andinet<br><br><div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div class="Ih2E3d"><br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
I just checked and both CoordinateSystemClassInterfaceMacro and<br>
CoordinateSystemDelegator are both in igstk namespace. I am not sure what<br>
you mean by "not qualified". Can you give us more information? A small<br>
example program that will demonstrate the problem will be great.<br>
</blockquote>
<br></div>
The classes I am writing are not in the igstk namespace. Hence, line 99 in igstkCoordinateSysteminterfaceMacros.h will cause problems:<br>
<br>
CoordinateSystemDelegator::Pointer m_CoordinateSystemDelegator;<br>
<br>
since CoordinateSystemDelegator has not been qualified with the igstk namespace.<br>
<br>
A minimal example could be:<br>
<br>
namespace myownnamespace<br>
{<br>
class MyClass<br>
{<br>
  MyClass()<br>
  {<br>
     igstkCoordinateSystemClassInterfaceConstructorMacro();<br>
  }<br>
  ~MyClass(){}<br>
<br>
igstkCoordinateSystemClassInterfaceMacro();<br>
}<br>
}<br>
<br>
int main(int argc, char **argv)<br>
{<br>
  myownnamespace::MyClass aclass;<br>
  return 0;<br>
}<br><font color="#888888">
<br>
Torleif<br>
<br>
</font></blockquote></div><br></div>