]> Creatis software - gdcm.git/blobdiff - src/gdcmHeader.cxx
Doxygenation.
[gdcm.git] / src / gdcmHeader.cxx
index 3dbcb1ac006064f543416ce58ef1b0ded69806c0..bc3b906abf1952fcede37414cf280210999f204a 100644 (file)
@@ -65,7 +65,7 @@ gdcmHeader::gdcmHeader(const char *InFilename,
       countGrPixel = GetEntry().count(key);
       
       // we set the SQ Depth of each Header Entry
-      
+   
    int top =-1;
    int countSQ = 0;      
    pileElem pile[100]; // Hope embedded sequence depth is no that long !
@@ -161,12 +161,12 @@ gdcmHeader::gdcmHeader(const char *InFilename,
       } 
       if (DEBUG) {
          for (int k=0; k<(*i)->GetSQDepthLevel();k++) {
-           cout << tab;
+           std::cout << tab;
          }
         (*i)->SetPrintLevel(2);
         (*i)->Print();
       }      
-   } // end for           
+   } // end for        
 }
 
 /**
@@ -604,7 +604,10 @@ size_t gdcmHeader::GetPixelOffset(void) {
    // pb : sometimes , (0x0088,0x0200) exists, but doesn't contain *anything*
    // see gdcmData/MxTwinLossLess.dcm ...
 
-   //std::string icone = GetEntryByNumber(0x0088,0x0200); //icone image sequence
+   /**
+    * \todo Clean me
+    *std::string icone = GetEntryByNumber(0x0088,0x0200); //icone image sequence
+    */
       
    IterHT it = GetHeaderEntrySameNumber(GrPixel,NumPixel);          
    TagKey key = gdcmDictEntry::TranslateToKey(GrPixel,NumPixel);
@@ -880,7 +883,7 @@ void gdcmHeader::SetImageDataSize(size_t ImageDataSize) {
    char car[20];
 
    // Assumes HeaderEntry (GrPixel, NumPixel) is unique ...   
-   // TODO deal with multiplicity (see gdcmData/icone.dcm)
+   //\todo deal with multiplicity (see gdcmData/icone.dcm)
    sprintf(car,"%d",ImageDataSize);
  
    gdcmHeaderEntry *a = GetHeaderEntryByNumber(GrPixel, NumPixel);