]> Creatis software - gdcm.git/blobdiff - src/gdcmUtil.h
*** empty log message ***
[gdcm.git] / src / gdcmUtil.h
index 4c552409cfe2f191fbd439f1a60c207dde49d060..dcc1068c516012b043028c48615f04f12eedd63f 100644 (file)
@@ -3,9 +3,11 @@
 #ifndef GDCMUTIL_H
 #define GDCMUTIL_H
 
+#include "gdcmCommon.h"
 #include "gdcmVR.h"
 #include "gdcmTS.h"
 #include "gdcmDictSet.h"
+#include "gdcmDicomDirElement.h"
 #include <iostream>
 #include <vector>
 #include <string>
@@ -23,7 +25,8 @@
  */
 class gdcmDebug {
 public:
-       gdcmDebug(int  = 0);
+       gdcmDebug(int level = GDCM_DEBUG);
+
        void SetDebug (int i) {DebugLevel = i;}
 
    void Verbose(int, const char*, const char* ="");
@@ -47,14 +50,16 @@ public:
    gdcmGlobal(void);
    ~gdcmGlobal();
 
+   static gdcmDictSet *GetDicts(void);
    static gdcmVR *GetVR(void);
    static gdcmTS *GetTS(void);
-   static gdcmDictSet *GetDicts(void);
+   static gdcmDicomDirElement *GetDicomDirElements(void);
 
 private:
+   static gdcmDictSet *Dicts; 
    static gdcmVR *VR;
    static gdcmTS *TS; 
-   static gdcmDictSet *Dicts; 
+   static gdcmDicomDirElement *ddElem;
 };
 
 //-----------------------------------------------------------------------------