]> Creatis software - gdcm.git/blobdiff - src/gdcmSeqEntry.cxx
Sub-minor fixes on std inclusion... JPR + Frog
[gdcm.git] / src / gdcmSeqEntry.cxx
index 39f4c98a7451474d47d7e480a718847882a4bc95..dec2adf9b6b62d38c27a40c2cdc68e41cafec02d 100644 (file)
@@ -71,10 +71,11 @@ void gdcmSeqEntry::Print(std::ostream &os){
       os << s2.str();
       if (seq_term != NULL) {
          seq_term->Print(os);
-      }         
+      } 
       else 
-         std::cout << "      -------------- should have a sequence terminator item"
-                  << std::endl;      
+         std::cout
+             << "      -------------- should have a sequence terminator item"
+             << std::endl;      
    }                    
  }
 
@@ -86,10 +87,11 @@ void gdcmSeqEntry::AddEntry(gdcmSQItem *sqItem) {
    items.push_back(sqItem);
 }
 
-
+/// \brief Sets the depth level of a Sequence Entry embedded in a SeQuence 
 void gdcmSeqEntry::SetDepthLevel(int depth) {
    SQDepthLevel = depth;
 }
+
 //-----------------------------------------------------------------------------
 // Protected
 
@@ -99,23 +101,29 @@ void gdcmSeqEntry::SetDepthLevel(int depth) {
 
 // end-user intended : the guy *wants* to create his own SeQuence ?!?
 
+/// \brief to be written, if really usefull
 gdcmDocEntry *gdcmSeqEntry::NewDocEntryByNumber(guint16 group,
                                                 guint16 element) {
-// TODO                                  
+// TODO
+   std::cout << "TODO : gdcmSeqEntry::NewDocEntryByNumber " << std::endl;
    gdcmDocEntry *a;   
-   return a;                             
+   return a;
 }
 
+/// \brief to be written, if really usefull
 gdcmDocEntry *gdcmSeqEntry::NewDocEntryByName  (std::string Name) {
-// TODO        :                         
+// TODO
+   std::cout << "TODO : gdcmSeqEntry::NewDocEntryByName " << std::endl;
    gdcmDocEntry *a;   
    return a;   
 }
 
+/// \brief to be written, if really usefull
 gdcmDocEntry *gdcmSeqEntry::GetDocEntryByNumber(guint16 group,
                                                 guint16 element) {
-// TODO                                  
+// TODO
+   std::cout << "TODO : gdcmSeqEntry::GetDocEntryByNumber " << std::endl;
    gdcmDocEntry *a;   
-   return a;                             
-}      
+   return a;
+}
 //-----------------------------------------------------------------------------