Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

gdcmElementSet.h

Go to the documentation of this file.
00001 /*=========================================================================
00002                                                                                 
00003   Program:   gdcm
00004   Module:    $RCSfile: gdcmElementSet.h,v $
00005   Language:  C++
00006   Date:      $Date: 2005/11/29 12:48:47 $
00007   Version:   $Revision: 1.53 $
00008                                                                                 
00009   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
00010   l'Image). All rights reserved. See Doc/License.txt or
00011   http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
00012                                                                                 
00013      This software is distributed WITHOUT ANY WARRANTY; without even
00014      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
00015      PURPOSE.  See the above copyright notices for more information.
00016                                                                                 
00017 =========================================================================*/
00018 
00019 #ifndef GDCMELEMENTSET_H
00020 #define GDCMELEMENTSET_H
00021 
00022 #include "gdcmDocEntrySet.h"
00023 
00024 #include <map>
00025 #include <iostream>
00026 #include <fstream>
00027 
00028 namespace gdcm 
00029 {
00030 typedef std::map<TagKey, DocEntry *> TagDocEntryHT;
00031 
00032 //-----------------------------------------------------------------------------
00040 class GDCM_EXPORT ElementSet : public DocEntrySet
00041 {
00042    gdcmTypeMacro(ElementSet);
00043 
00044 public:
00045    virtual void Print(std::ostream &os = std::cout, 
00046                       std::string const &indent = "" ); 
00047 
00048    void WriteContent(std::ofstream *fp, FileType filetype); 
00049 
00050    bool AddEntry(DocEntry *Entry);
00051    bool RemoveEntry(DocEntry *EntryToRemove);
00052    void ClearEntry();
00053    
00054    DocEntry *GetFirstEntry();
00055    DocEntry *GetNextEntry();
00056    DocEntry *GetDocEntry(uint16_t group, uint16_t elem);
00058    bool IsEmpty() { return TagHT.empty(); }
00059 
00060    virtual void Copy(DocEntrySet *set);
00061 
00062 protected:
00063    ElementSet();
00064    ~ElementSet();
00067    bool MayIWrite(uint16_t )
00068                  { return true; }
00069 private:
00070 // Variables
00072    TagDocEntryHT TagHT;
00074    TagDocEntryHT::iterator ItTagHT;
00075 };
00076 } // end namespace gdcm
00077 //-----------------------------------------------------------------------------
00078 #endif
00079 

Generated on Fri Jan 20 10:14:25 2006 for gdcm by  doxygen 1.4.4