]> Creatis software - gdcm.git/blobdiff - src/gdcmCommon.h
* src/gdcmElValSet.cxx, gdcmFile.cxx: JPR bug fix, removal of
[gdcm.git] / src / gdcmCommon.h
index a93fb998583583100ee9a05c567d29b734780c0b..131fceba3d18243b398c7c8a68dafabd2b92bc2b 100644 (file)
@@ -26,11 +26,17 @@ typedef  int                gint32;
 #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;
+typedef std::string TagKey;
+typedef std::string TagName;
+
+enum FileType {
+      Unknown = 0,
+      ExplicitVR,
+      ImplicitVR,
+      ACR,
+      ACR_LIBIDO
+};
+
 
 #endif