]> Creatis software - gdcm.git/commitdiff
#include <string>
authorjpr <jpr>
Thu, 13 Mar 2003 15:42:08 +0000 (15:42 +0000)
committerjpr <jpr>
Thu, 13 Mar 2003 15:42:08 +0000 (15:42 +0000)
#ifdef _MSC_VER
using namespace std;  // string type lives in the std namespace on VC++
#endif

en esperant que ca marche comme avant

src/gdcmCommon.h

index 4545807082ff3c85042afb8d4b25f8b97f22a740..a86930e25d309159e5eba701b8b633421db34ac2 100644 (file)
@@ -20,12 +20,15 @@ typedef  int                gint32;
 
 #ifdef _MSC_VER
 #define GDCM_EXPORT __declspec( dllexport )
-using namespace std;
 #else
 #define GDCM_EXPORT
 #endif
 
 #include <string>
+#ifdef _MSC_VER
+using namespace std;  // string type lives in the std namespace on VC++
+#endif
+
 typedef string TagKey;
 typedef string TagName;