]> Creatis software - gdcm.git/blob - src/gdcmCommon.h
* src/gdcm.h splitted in gdcmCommon.h, gdcmDict.h, gdcmDictEntry.h,
[gdcm.git] / src / gdcmCommon.h
1 //gdcmCommon.h
2
3 #ifndef GDCMCOMMON_H
4 #define GDCMCOMMON_H
5
6 #ifdef __GNUC__
7 #include <stdint.h>
8 #define guint16 uint16_t
9 #define guint32 uint32_t
10 #endif
11
12 #ifdef _MSC_VER 
13 typedef  unsigned short guint16;
14 typedef  unsigned int   guint32;
15 #endif
16
17 #ifdef _MSC_VER
18 #define GDCM_EXPORT __declspec( dllexport )
19 #else
20 #define GDCM_EXPORT
21 #endif
22
23 #include <string>
24 typedef string TagKey;
25 typedef string TagName;
26
27 #endif