[Insight-users] fixes for Borland build of /Auxiliary

Luis Ibanez luis.ibanez@kitware.com
Tue, 01 Oct 2002 10:23:22 -0400


Hi Dean,

Could you give us more details on the need of opening the
namespace itk ?

Normally it is not a good idea to open the namespace with

     "using namespace itk"

since this is almost like not using namespaces at all.

Probably was is missing is to specify the full namespace
in some ITK class used inside the TimeProbesCollectorGUI.

in that case it will be better to add something like

        ::itk::Foo

Please let us know,

Thanks


Luis

========================================

dean.inglis@on.aibn.com wrote:

>
>2) Auxiliary/fltkTimeProbesCollectorGUI.h - add
>using namespace itk;
>before the class definition:
>class TimeProbesCollectorGUI : public
>itk::TimeProbesCollectorBase {
>