]> Creatis software - gdcm.git/blobdiff - src/gdcmObject.h
Now the tree-like structure describing a DICOMDIR comming from an already
[gdcm.git] / src / gdcmObject.h
index b84575468b045d296d987121a13dde3157d071cd..2d49cf3b2be7928478c39e79d13f4813ec0298a8 100644 (file)
@@ -8,7 +8,7 @@
 #include "gdcmCommon.h"
 #include "gdcmHeaderEntry.h"
 #include "gdcmParser.h"
-
+#include "gdcmDicomDirElement.h"
 //-----------------------------------------------------------------------------
 class gdcmObject;
 typedef std::list<gdcmObject *> ListContent;
@@ -17,7 +17,8 @@ typedef std::list<gdcmObject *> ListContent;
 class GDCM_EXPORT gdcmObject 
 {
 public:
-   gdcmObject(ListTag::iterator begin,ListTag::iterator end);
+   gdcmObject(ListTag::iterator begin,ListTag::iterator end,
+              TagHeaderEntryHT *ptagHT, ListTag *plistEntries); 
    ~gdcmObject(void);
 
    void SetPrintLevel(int level) { printLevel = level; };
@@ -25,17 +26,80 @@ public:
 
    std::string GetEntryByNumber(guint16 group, guint16 element);
    std::string GetEntryByName(TagName name);
-
+   bool SetEntryByNumber(std::string val,guint16 group,guint16 element);
+   
    TagHeaderEntryHT GetEntry(void);
    ListTag GetListEntry(void);
+   
+   void ResetBoundaries(int flag);
+/**
+ * \ingroup gdcmObject
+ * \brief   returns an iterator on the first Header Entry (i.e Dicom Element),
+ *          inside the DICOMDIR chained list,
+ *          related to this 'Object' 
+ * @return
+ */
+   ListTag::iterator debut(void) 
+      { return(beginObj);}
+/**
+ * \ingroup gdcmObject
+ * \brief   returns an iterator on the last Header Entry (i.e Dicom Element),
+ *          inside the DICOMDIR chained list,
+ *          related to this 'Object' 
+ * @return
+ */
+    ListTag::iterator fin  (void) 
+       { return(endObj);  }
 
+/**
+ * \ingroup gdcmObject
+ * \brief   Sets the iterator on the 'new' last Header Entry (i.e Dicom Element),
+ *          inside the DICOMDIR chained list,
+ *          related to this 'Object' 
+ * \warning : NOT end user intended function
+ * \todo find a trick to make this function useless.
+* @return
+ */
+    ListTag::iterator SetEndObj(ListTag::iterator newEnd) 
+       { endObj=newEnd;  }       
+   
 protected:
+
+void FillObject(std::list<gdcmElement> elemList);
+
+/**
+* \brief iterator on the first Header Entry (i.e Dicom Element), 
+*       inside the DICOMDIR chained list,
+*       related to this 'Object'
+*/   
    ListTag::iterator beginObj;
+/**
+* \brief iterator on the last Header Entry (i.e Dicom Element), 
+*       inside the DICOMDIR chained list,
+*       related to this 'Object'
+*/
    ListTag::iterator endObj;
-
+/**
+* \brief pointer to the HTable of the gdcmParser,
+*        (because we don't know it within any gdcmObject) 
+*/
+  TagHeaderEntryHT *ptagHT;
+/**
+* \brief pointer to the Chained List of the gdcmParser,
+*        (because we don't know it within any gdcmObject)  
+*/  
+   ListTag *plistEntries;
+/**
+* \brief
+*/   
    int printLevel;
+   
+/// used to pass variables to FillObject function
+/// Work as 'global' variables
+   std::list<gdcmHeaderEntry *>::iterator debInsertion, finInsertion, i,j;
 
 private:
+
 };
 
 //-----------------------------------------------------------------------------