]> Creatis software - gdcm.git/blobdiff - src/gdcmDicomDirElement.cxx
* src/gdcmParser.cxx: removal of all TAB character. Indentation fixed.
[gdcm.git] / src / gdcmDicomDirElement.cxx
index d7197ce969d1ef5a049b2d74c8848047d2172df2..a8309d84a87bb7bcf2b1bde63a90709cdce289b0 100644 (file)
@@ -2,29 +2,32 @@
 //-----------------------------------------------------------------------------
 #include <fstream>
 #include <stdio.h>    // For sprintf
+#include <iostream>
+#ifdef GDCM_NO_ANSI_STRING_STREAM
+#  include <strstream>
+#  define  ostringstream ostrstream
+# else
+#  include <sstream>
+#endif
 
 #include "gdcmDicomDirElement.h"
 #include "gdcmUtil.h"
+#include "gdcmDebug.h"
+#include "gdcmDictSet.h"
 
 #ifndef PUB_DICT_PATH
 #  define PUB_DICT_PATH     "../Dicts/"
 #endif
 #define DICT_ELEM "DicomDir.dic"
 
-#include <iostream>
-#ifdef GDCM_NO_ANSI_STRING_STREAM
-#  include <strstream>
-#  define  ostringstream ostrstream
-# else
-#  include <sstream>
-#endif
 
 //-----------------------------------------------------------------------------
 // Constructor / Destructor
 
 /**
  * \ingroup gdcmDicomDirElement
- * \brief   constructor 
+ * \brief   constructor : populates the chained lists 
+ *          from the file 'Dicts/DicomDir.dic'
  */
  gdcmDicomDirElement::gdcmDicomDirElement(void) {
    std::string filename=gdcmDictSet::BuildDictPath() + std::string(DICT_ELEM);
@@ -70,7 +73,7 @@
 
 /**
  * \ingroup gdcmDicomDirElement
- * \brief   destructor 
+ * \brief   canonical destructor 
  */
  gdcmDicomDirElement::~gdcmDicomDirElement() {
    DicomDirMetaList.clear();