]> Creatis software - gdcm.git/blobdiff - src/gdcmDictSet.h
* src/gdcmFile.cxx : bug fix under Window after JPR commit
[gdcm.git] / src / gdcmDictSet.h
index f2f50634ccf9764135c6eac538f90c85706e5895..f71a1eb8d447aaa977d1a23dcaafa13528b1d34b 100644 (file)
@@ -14,7 +14,7 @@ typedef std::map<DictKey, gdcmDict*> DictSetHT;
  * \defgroup gdcmDictSet
  * \brief  Container for managing a set of loaded dictionaries.
  * \note   Hopefully, sharing dictionaries should avoid
- * \par    reloading an allready loaded dictionary (saving time)
+ * \par    reloading an already loaded dictionary (saving time)
  * \par    having many in memory representations of the same dictionary
  *        (saving memory).
  */
@@ -25,7 +25,7 @@ private:
    /// Directory path to dictionaries
    std::string DictPath;
        int AppendDict(gdcmDict* NewDict);
-       void LoadDictFromFile(std::string filename, DictKey);
+       void LoadDictFromFile(std::string FileName, DictKey Name);
    std::string BuildDictPath(void);
 public:
    std::list<std::string> * GetPubDictTagNames(void);
@@ -41,7 +41,7 @@ public:
        // TODO Swig std::string* GetAllDictNames();
        gdcmDictSet(void);
        ~gdcmDictSet(void);
-       void Print(ostream&);
+       void Print(std::ostream& os);
        gdcmDict* GetDict(DictKey DictName);
        gdcmDict* GetDefaultPubDict(void);
 };