00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef _GDCMDICTSET_H
00020 #define _GDCMDICTSET_H
00021
00022 #include "gdcmRefCounter.h"
00023 #include "gdcmDict.h"
00024 #include "gdcmGlobal.h"
00025
00026 #include <map>
00027 #include <list>
00028
00029 namespace GDCM_NAME_SPACE
00030 {
00031
00032 typedef std::map<DictKey, Dict*> DictSetHT;
00033
00034
00042 class GDCM_EXPORT DictSet : public RefCounter
00043 {
00044 gdcmTypeMacro(DictSet);
00045
00046 public:
00048 static DictSet *New() {return new DictSet();}
00049
00050 void Print(std::ostream &os = std::cout, std::string const &indent = "" );
00051
00052
00053
00054
00055
00056 Dict *LoadDictFromFile( std::string const &fileName,
00057 DictKey const &name );
00058
00059 Dict *GetDict( DictKey const &DictName );
00060
00062
00063 Dict* GetDefaultPubDict() { return Global::DefaultPubDict; }
00064
00065
00066
00067
00068
00069 Dict *GetFirstDict();
00070 Dict *GetNextDict();
00071
00072 static std::string BuildDictPath();
00073
00074 protected:
00075 DictSet();
00076 ~DictSet();
00077
00078 private:
00080 DictSetHT Dicts;
00082 DictSetHT::iterator ItDictHt;
00083
00085 std::string DictPath;
00086 };
00087 }
00088
00089
00090 #endif