]> Creatis software - gdcm.git/blob - src/gdcmCommon.h
- guint16 and guint32 removed. Use ISO C uint16_t, uint32_t instead.
[gdcm.git] / src / gdcmCommon.h
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmCommon.h,v $
5   Language:  C++
6   Date:      $Date: 2004/07/02 13:55:27 $
7   Version:   $Revision: 1.28 $
8                                                                                 
9   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10   l'Image). All rights reserved. See Doc/License.txt or
11   http://www.creatis.insa-lyon.fr/Public/Gdcm/License.htm for details.
12                                                                                 
13      This software is distributed WITHOUT ANY WARRANTY; without even
14      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15      PURPOSE.  See the above copyright notices for more information.
16                                                                                 
17 =========================================================================*/
18
19 #ifndef GDCMCOMMON_H
20 #define GDCMCOMMON_H
21
22 #include "gdcmConfigure.h"
23
24 //-----------------------------------------------------------------------------
25 //This is needed when compiling in debug mode
26 #ifdef _MSC_VER
27 // 'identifier' : class 'type' needs to have dll-interface to be used by
28 // clients of class 'type2'
29 #pragma warning ( disable : 4251 )
30 // 'identifier' : identifier was truncated to 'number' characters in the
31 // debug information
32 #pragma warning ( disable : 4786 )
33 //'identifier' : decorated name length exceeded, name was truncated
34 #pragma warning ( disable : 4503 )
35 // C++ exception specification ignored except to indicate a 
36 // function is not __declspec(nothrow)
37 #pragma warning ( disable : 4290 )
38 // signed/unsigned mismatch
39 #pragma warning ( disable : 4018 )
40 // return type for 'identifier' is '' (ie; not a UDT or reference to UDT. Will
41 // produce errors if applied using infix notation
42 #pragma warning ( disable : 4284 )
43 // 'type' : forcing value to bool 'true' or 'false' (performance warning)
44 // //#pragma warning ( disable : 4800 )
45 #endif //_MSC_VER
46
47 //-----------------------------------------------------------------------------
48 #ifdef __GNUC__
49 #ifndef HAVE_NO_STDINT_H
50 #include <stdint.h>   // For uint16_t and uint32_t
51 #else
52 typedef  unsigned short uint16_t;
53 typedef  unsigned int   uint32_t;
54 #define UINT32_MAX    (4294967295U)
55 #endif //HAVE_NO_STDINT_H
56 #endif
57
58 #ifdef _MSC_VER 
59 typedef  unsigned short uint16_t;
60 typedef  unsigned int   uint32_t;
61 #define UINT32_MAX    (4294967295U)
62 #endif
63
64 #ifdef _MSC_VER
65 #define GDCM_EXPORT __declspec( dllexport )
66 #define getcwd _getcwd
67 #else
68 #define GDCM_EXPORT
69 #endif
70
71 // ifdef for old gcc / broken compiler
72 #ifdef GDCM_NO_ANSI_STRING_STREAM
73 #  include <strstream>
74 #  define  ostringstream ostrstream
75 # else
76 #  include <sstream>
77 #endif
78
79
80 // Centralize information about the gdcm dictionary in only one file:
81 #ifndef PUB_DICT_PATH
82 #  define PUB_DICT_PATH   "../Dicts/"
83 #endif
84 #define PUB_DICT_NAME     "DicomV3Dict"
85 #define PUB_DICT_FILENAME "dicomV3.dic"
86 #define DICT_ELEM         "DicomDir.dic"
87 #define DICT_TS           "dicomTS.dic"
88 #define DICT_VR           "dicomVR.dic"
89
90 #include <string>
91
92 const std::string GDCM_UNFOUND = "gdcm::Unfound";   /// MEMORY LEAK
93
94 typedef std::string gdcmTagKey;
95 typedef std::string TagName;
96
97 enum FileType {
98       gdcmUnknown = 0,
99       gdcmExplicitVR, // gdcmDicomDir is in this case
100       gdcmImplicitVR,
101       gdcmACR,
102       gdcmACR_LIBIDO
103 };
104
105 //-----------------------------------------------------------------------------
106 #endif