X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDocEntrySet.cxx;h=abc0885ecae368ccdc1c425b03cfd1a583113041;hb=332835b05f78803ae6d2e92cf95c25548a229532;hp=ba497b5ff54e5333a8a5329c546dcd0f042faf90;hpb=3fd520b58c8d1939994de2c63cc038c3e7ac9522;p=gdcm.git diff --git a/src/gdcmDocEntrySet.cxx b/src/gdcmDocEntrySet.cxx index ba497b5f..abc0885e 100644 --- a/src/gdcmDocEntrySet.cxx +++ b/src/gdcmDocEntrySet.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDocEntrySet.cxx,v $ Language: C++ - Date: $Date: 2004/08/26 15:29:52 $ - Version: $Revision: 1.16 $ + Date: $Date: 2004/08/31 15:39:48 $ + Version: $Revision: 1.18 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -59,8 +59,8 @@ gdcmDocEntrySet::~gdcmDocEntrySet() * \brief Build a new Val Entry from all the low level arguments. * Check for existence of dictionary entry, and build * a default one when absent. - * @param Group group number of the underlying DictEntry - * @param Elem element number of the underlying DictEntry + * @param group group number of the underlying DictEntry + * @param elem element number of the underlying DictEntry */ gdcmValEntry *gdcmDocEntrySet::NewValEntryByNumber(uint16_t group, uint16_t elem) @@ -87,8 +87,8 @@ gdcmValEntry *gdcmDocEntrySet::NewValEntryByNumber(uint16_t group, * \brief Build a new Bin Entry from all the low level arguments. * Check for existence of dictionary entry, and build * a default one when absent. - * @param Group group number of the underlying DictEntry - * @param Elem element number of the underlying DictEntry + * @param group group number of the underlying DictEntry + * @param elem element number of the underlying DictEntry */ gdcmBinEntry *gdcmDocEntrySet::NewBinEntryByNumber(uint16_t group, uint16_t elem) @@ -216,7 +216,10 @@ gdcmDocEntry* gdcmDocEntrySet::NewDocEntryByNumber(uint16_t group, return newEntry; } -/// \brief +/* \brief + * Probabely move, as is, to gdcmDocEntrySet, as a non virtual method + * an remove gdcmDocument::NewDocEntryByName + */ gdcmDocEntry *gdcmDocEntrySet::NewDocEntryByName (std::string const & name) { gdcmDict *pubDict = gdcmGlobal::GetDicts()->GetDefaultPubDict(); @@ -242,7 +245,7 @@ gdcmDocEntry *gdcmDocEntrySet::NewDocEntryByName (std::string const & name) * \brief Searches both the public and the shadow dictionary (when they * exist) for the presence of the DictEntry with given name. * The public dictionary has precedence on the shadow one. - * @param Name name of the searched DictEntry + * @param name Name of the searched DictEntry * @return Corresponding DictEntry when it exists, NULL otherwise. */ gdcmDictEntry *gdcmDocEntrySet::GetDictEntryByName(std::string const & name)