X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDocEntrySet.cxx;h=b187140b4beb75c6ca65e4ded676b4e783127c4f;hb=0a8894522fde1e35128022e0df3f0366677be59e;hp=ba497b5ff54e5333a8a5329c546dcd0f042faf90;hpb=3fd520b58c8d1939994de2c63cc038c3e7ac9522;p=gdcm.git diff --git a/src/gdcmDocEntrySet.cxx b/src/gdcmDocEntrySet.cxx index ba497b5f..b187140b 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/09/10 14:32:04 $ + Version: $Revision: 1.20 $ 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) @@ -192,8 +192,9 @@ gdcmDictEntry* gdcmDocEntrySet::NewVirtualDictEntry(uint16_t group, } /** \brief - * Probabely move, as is, to gdcmDocEntrySet, as a non virtual method - * an remove gdcmDocument::NewDocEntryByNumber + * Creates a new DocEntry (without any 'value' ...) + * @param group group number of the underlying DictEntry + * @param elem elem number of the underlying DictEntry */ gdcmDocEntry* gdcmDocEntrySet::NewDocEntryByNumber(uint16_t group, uint16_t elem) @@ -216,7 +217,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 +246,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)