X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=src%2FgdcmDocEntry.cxx;h=e82e2100c8dd2c6ad8d2e94884ca3ebcccb681d9;hb=70a3a0f95bf2240a6ef4b1d6523c0e6614437304;hp=a1718533e6a66549090c313e922122d66a6ab997;hpb=038a3b7f67769dc20b4c46f3c9dcad7cc63d1161;p=gdcm.git diff --git a/src/gdcmDocEntry.cxx b/src/gdcmDocEntry.cxx index a1718533..e82e2100 100644 --- a/src/gdcmDocEntry.cxx +++ b/src/gdcmDocEntry.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDocEntry.cxx,v $ Language: C++ - Date: $Date: 2005/01/18 08:01:41 $ - Version: $Revision: 1.42 $ + Date: $Date: 2005/01/23 10:12:33 $ + Version: $Revision: 1.45 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -55,6 +55,7 @@ DocEntry::DocEntry(DictEntry *in) /** * \brief Prints the common part of ValEntry, BinEntry, SeqEntry * @param os ostream we want to print in + * @param indent Indentation string to be prepended during printing */ void DocEntry::Print(std::ostream &os, std::string const & ) { @@ -115,7 +116,7 @@ void DocEntry::Print(std::ostream &os, std::string const & ) /** * \brief Writes the common part of any ValEntry, BinEntry, SeqEntry - * @param fp already open file pointer + * @param fp already open ofstream pointer * @param filetype type of the file to be written */ void DocEntry::WriteContent(std::ofstream *fp, FileType filetype) @@ -241,7 +242,7 @@ uint32_t DocEntry::GetFullLength() * \brief Copies all the attributes from an other DocEntry * @param e entry to copy from */ -void DocEntry::Copy (DocEntry *e) +void DocEntry::Copy(DocEntry *e) { Length = e->Length; ReadLength = e->ReadLength;