X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDocEntry.cxx;h=e82e2100c8dd2c6ad8d2e94884ca3ebcccb681d9;hb=70a3a0f95bf2240a6ef4b1d6523c0e6614437304;hp=b1c276d20ea4158691ae4c55c29697c7a06cf3c4;hpb=3869544e5153cebbd44ad8778cbaf35883bfb993;p=gdcm.git diff --git a/src/gdcmDocEntry.cxx b/src/gdcmDocEntry.cxx index b1c276d2..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/07 22:19:48 $ - Version: $Revision: 1.40 $ + 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 @@ -35,7 +35,6 @@ namespace gdcm //----------------------------------------------------------------------------- // Constructor / Destructor /** - * \ingroup DocEntry * \brief Constructor from a given DictEntry * @param in Pointer to existing dictionary entry */ @@ -54,11 +53,11 @@ DocEntry::DocEntry(DictEntry *in) //----------------------------------------------------------------------------- // Print /** - * \ingroup DocEntry * \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) +void DocEntry::Print(std::ostream &os, std::string const & ) { size_t o; std::string st; @@ -116,9 +115,8 @@ void DocEntry::Print(std::ostream &os) } /** - * \ingroup DocEntry * \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) @@ -216,7 +214,6 @@ void DocEntry::WriteContent(std::ofstream *fp, FileType filetype) // Public /** - * \ingroup DocEntry * \brief Gets the full length of the elementary DocEntry (not only value * length) depending on the VR. */ @@ -242,20 +239,18 @@ uint32_t DocEntry::GetFullLength() } /** - * \ingroup DocEntry * \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; ImplicitVR = e->ImplicitVR; Offset = e->Offset; - // TODO : remove DocEntry SQDepth } /** - * \ingroup DocEntry * \brief tells us if entry is the last one of a 'no length' SequenceItem * (fffe,e00d) */ @@ -264,7 +259,6 @@ bool DocEntry::IsItemDelimitor() return (GetGroup() == 0xfffe && GetElement() == 0xe00d); } /** - * \ingroup DocEntry * \brief tells us if entry is the last one of a 'no length' Sequence * (fffe,e0dd) */