X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmCommon.h;h=5c2b38054f58a8d346de4fe28afcbb3464956e8a;hb=1988dee6507ec70166b38c7e0cac6c1e9c18351e;hp=4545807082ff3c85042afb8d4b25f8b97f22a740;hpb=724fc941e10045f4e21ac6bdd7d8e89c3b68bbf9;p=gdcm.git diff --git a/src/gdcmCommon.h b/src/gdcmCommon.h index 45458070..5c2b3805 100644 --- a/src/gdcmCommon.h +++ b/src/gdcmCommon.h @@ -16,17 +16,30 @@ typedef unsigned short guint16; typedef unsigned int guint32; typedef short gint16; typedef int gint32; +#define UINT32_MAX (4294967295U) #endif #ifdef _MSC_VER #define GDCM_EXPORT __declspec( dllexport ) -using namespace std; #else #define GDCM_EXPORT #endif #include +#ifdef _MSC_VER +using namespace std; // string type lives in the std namespace on VC++ +#endif + typedef string TagKey; typedef string TagName; +enum FileType { + Unknown = 0, + ExplicitVR, + ImplicitVR, + ACR, + ACR_LIBIDO +}; + + #endif