]> Creatis software - gdcm.git/blob - src/gdcmCommon.h
some DICOMDIR writting purpose modif
[gdcm.git] / src / gdcmCommon.h
1 //gdcmCommon.h
2 //-----------------------------------------------------------------------------
3 #ifndef GDCMCOMMON_H
4 #define GDCMCOMMON_H
5
6 //This is needed when compiling in debug mode
7 #ifdef _MSC_VER
8 // 'identifier' : class 'type' needs to have dll-interface to be used by
9 // clients of class 'type2'
10 #pragma warning ( disable : 4251 )
11 // 'identifier' : identifier was truncated to 'number' characters in the
12 // debug information
13 #pragma warning ( disable : 4786 )
14 //'identifier' : decorated name length exceeded, name was truncated
15 #pragma warning ( disable : 4503 )
16 // C++ exception specification ignored except to indicate a 
17 // function is not __declspec(nothrow)
18 #pragma warning ( disable : 4290 )
19 // signed/unsigned mismatch
20 #pragma warning ( disable : 4018 )
21 // return type for 'identifier' is '' (ie; not a UDT or reference to UDT. Will
22 // produce errors if applied using infix notation
23 #pragma warning ( disable : 4284 )
24 #endif //_MSC_VER
25
26 // Mmmmmm !
27 // It reminds me the formerly well known LibIDO's idproto.h
28
29 //-----------------------------------------------------------------------------
30 #ifdef __GNUC__
31 #ifndef HAVE_NO_STDINT_H
32 #include <stdint.h>
33 #define guint16 uint16_t
34 #define guint32 uint32_t
35 #define gint16  int16_t
36 #define gint32  int32_t
37 #else
38 typedef  unsigned short guint16;
39 typedef  unsigned int   guint32;
40 typedef  short          gint16;
41 typedef  int            gint32;
42 #define UINT32_MAX    (4294967295U)
43 #endif //HAVE_NO_STDINT_H
44 #endif
45
46 #ifdef _MSC_VER 
47 typedef  unsigned short guint16;
48 typedef  unsigned int   guint32;
49 typedef  short          gint16;
50 typedef  int            gint32;
51 #define UINT32_MAX    (4294967295U)
52 #endif
53
54 #ifdef _MSC_VER
55 #define GDCM_EXPORT __declspec( dllexport )
56 #else
57 #define GDCM_EXPORT
58 #endif
59
60 #include <string>
61
62 const std::string GDCM_UNFOUND = "gdcm::Unfound";
63
64 typedef std::string TagKey;
65 typedef std::string TagName;
66
67 enum FileType {
68       Unknown = 0,
69       ExplicitVR,
70       ImplicitVR,
71       ACR,
72       ACR_LIBIDO,
73       DICOMDIR
74 };
75
76 //For now gdcm is not willing cmake, try to be more quiet
77 //#cmakedefine GDCM_NO_ANSI_STRING_STREAM
78
79 //-----------------------------------------------------------------------------
80 #endif