X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmCommon.h;h=b3300d9063abd0d39d4ca12ca44b73ba15e2b34f;hb=d44cb38c3275dc302d9b523c17d346810f0e6644;hp=4545807082ff3c85042afb8d4b25f8b97f22a740;hpb=724fc941e10045f4e21ac6bdd7d8e89c3b68bbf9;p=gdcm.git diff --git a/src/gdcmCommon.h b/src/gdcmCommon.h index 45458070..b3300d90 100644 --- a/src/gdcmCommon.h +++ b/src/gdcmCommon.h @@ -16,17 +16,29 @@ 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 -typedef string TagKey; -typedef string TagName; + +const std::string GDCM_UNFOUND = "gdcm::Unfound"; + +typedef std::string TagKey; +typedef std::string TagName; + +enum FileType { + Unknown = 0, + ExplicitVR, + ImplicitVR, + ACR, + ACR_LIBIDO +}; + #endif