ANSI C++ changes revisited

Bill Hoffman bill.hoffman at kitware.com
Thu Apr 27 13:46:28 EDT 2000


At 01:15 PM 4/27/00 -0400, Bill Hoffman wrote:
>Peter, this is exactly what we have done.  
>
>#ifdef VTK_USE_ANSI_STDLIB


Sorry, my email was sent a bit short.  We have done what Peter suggests, 
except that it is only turned on when VTK_USE_ANSI_STDLIB is defined.

#ifdef VTK_USE_ANSI_STDLIB
#include <iostream>
using std::cout;
...
#else
#include <iostream.h>
#endif

Just because a compiler supports the standard, does not mean that
VTK users want to use that feature.

-Bill


--------------------------------------------------------------------
This is the private VTK discussion list. Please keep messages on-topic.
Check the FAQ at: <http://public.kitware.com/cgi-bin/vtkfaq>
To UNSUBSCRIBE, send message body containing "unsubscribe vtkusers" to
<majordomo at public.kitware.com>. For help, send message body containing
"info vtkusers" to the same address.
--------------------------------------------------------------------



More information about the vtkusers mailing list