From a4cc79200b40be00c490fa4a9116dca626e1c5cf Mon Sep 17 00:00:00 2001 From: jpr Date: Mon, 17 Sep 2007 12:16:01 +0000 Subject: [PATCH] Doxygen (1.5.2) doen't want \\ref option. Avoid tons of warnings --- src/gdcmDicomDir.h | 6 +++--- src/gdcmDictEntry.h | 8 ++++---- src/gdcmDocEntry.h | 6 +++--- src/gdcmDocEntrySet.cxx | 8 ++++---- src/gdcmDocEntrySet.h | 24 ++++++++++++------------ src/gdcmDocument.cxx | 10 +++++----- src/gdcmDocument.h | 10 +++++----- src/gdcmElementSet.h | 10 +++++----- src/gdcmFile.cxx | 20 ++++++++++---------- src/gdcmFile.h | 8 ++++---- src/gdcmFileHelper.cxx | 14 +++++++------- src/gdcmFileHelper.h | 6 +++--- src/gdcmJPEGFragment.h | 6 +++--- src/gdcmJPEGFragmentsInfo.h | 10 +++++----- src/gdcmRLEFrame.h | 6 +++--- src/gdcmRLEFramesInfo.h | 10 +++++----- src/gdcmSQItem.h | 14 +++++++------- src/gdcmSeqEntry.h | 12 ++++++------ src/gdcmVR.cxx | 6 +++--- src/gdcmVR.h | 6 +++--- 20 files changed, 100 insertions(+), 100 deletions(-) diff --git a/src/gdcmDicomDir.h b/src/gdcmDicomDir.h index 9fcce680..eb2ac4d7 100644 --- a/src/gdcmDicomDir.h +++ b/src/gdcmDicomDir.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDicomDir.h,v $ Language: C++ - Date: $Date: 2007/08/22 16:14:03 $ - Version: $Revision: 1.81 $ + Date: $Date: 2007/09/17 12:16:02 $ + Version: $Revision: 1.82 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -69,7 +69,7 @@ public: void SetDirectoryName(std::string const &dirName) { ParseDir = true; if (Filename != dirName) Filename = dirName, IsDocumentModified = true;} - /// Accessor to \ref Filename + /// Accessor to Filename virtual void SetFileName(std::string const &fileName) { ParseDir = false; if (Filename != fileName) Filename = fileName, IsDocumentModified = true;} diff --git a/src/gdcmDictEntry.h b/src/gdcmDictEntry.h index 61f766fd..24720c93 100644 --- a/src/gdcmDictEntry.h +++ b/src/gdcmDictEntry.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDictEntry.h,v $ Language: C++ - Date: $Date: 2007/08/22 16:14:04 $ - Version: $Revision: 1.46 $ + Date: $Date: 2007/09/17 12:16:02 $ + Version: $Revision: 1.47 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -99,12 +99,12 @@ protected: ~DictEntry(); private: - /// Dicom \ref TagKey. Contains Dicom Group number and Dicom Element number + /// Dicom TagKey. Contains Dicom Group number and Dicom Element number TagKey Tag; /// \brief Value Representation i.e. some clue about the nature /// of the data represented e.g. - /// - "FD" short for "Floating Point Double"(see \ref VR) + /// - "FD" short for "Floating Point Double"(see VR) /// - "PN" short for "Person Name" VRKey VR; diff --git a/src/gdcmDocEntry.h b/src/gdcmDocEntry.h index d58b1c0b..a756fa7d 100644 --- a/src/gdcmDocEntry.h +++ b/src/gdcmDocEntry.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDocEntry.h,v $ Language: C++ - Date: $Date: 2007/08/29 15:30:49 $ - Version: $Revision: 1.70 $ + Date: $Date: 2007/09/17 12:16:02 $ + Version: $Revision: 1.71 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -178,7 +178,7 @@ protected: /// \brief Value Representation (to avoid accessing Dicom Dict every time!) VRKey VR; // JPRx - /// \brief Dicom \ref TagKey. Contains Dicom Group number and Dicom Element number + /// \brief Dicom TagKey. Contains Dicom Group number and Dicom Element number /// (to avoid accessing Dicom Dict every time !) // JPRx TagKey Key; // JPRx private: diff --git a/src/gdcmDocEntrySet.cxx b/src/gdcmDocEntrySet.cxx index d3a56c7a..fbc4764e 100644 --- a/src/gdcmDocEntrySet.cxx +++ b/src/gdcmDocEntrySet.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDocEntrySet.cxx,v $ Language: C++ - Date: $Date: 2007/07/27 21:21:48 $ - Version: $Revision: 1.75 $ + Date: $Date: 2007/09/17 12:16:02 $ + Version: $Revision: 1.76 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -94,7 +94,7 @@ int DocEntrySet::GetEntryLength(uint16_t group, uint16_t elem) } /** - * \brief Same as \ref Document::GetDocEntry except it returns a result + * \brief Same as DocEntrySet::GetDocEntry except it returns a result * only when the corresponding entry is of type DataEntry. * @param group Group number of the searched Dicom Element * @param elem Element number of the searched Dicom Element @@ -110,7 +110,7 @@ DataEntry *DocEntrySet::GetDataEntry(uint16_t group, uint16_t elem) } /** - * \brief Same as \ref Document::GetDocEntry except it returns a result + * \brief Same as DocEntrySet::GetDocEntry except it returns a result * only when the corresponding entry is of type SeqEntry. * @param group Group number of the searched Dicom Element * @param elem Element number of the searched Dicom Element diff --git a/src/gdcmDocEntrySet.h b/src/gdcmDocEntrySet.h index 5e82772c..7f31fb47 100644 --- a/src/gdcmDocEntrySet.h +++ b/src/gdcmDocEntrySet.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDocEntrySet.h,v $ Language: C++ - Date: $Date: 2007/08/29 15:30:49 $ - Version: $Revision: 1.72 $ + Date: $Date: 2007/09/17 12:16:02 $ + Version: $Revision: 1.73 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -36,23 +36,23 @@ class DictEntry; //----------------------------------------------------------------------------- /** * \brief - * \ref DocEntrySet is an abstract base class for \ref ElementSet, \ref SQItem + * DocEntrySet is an abstract base class for ElementSet, SQItem * which are both containers for DocEntries. - * - \ref ElementSet is based on the STL map<> container - * (see \ref ElementSet::TagHT) - * - \ref SQItem is based on an STL list container (see \ref ListDocEntry). + * - ElementSet is based on the STL map<> container + * (see ElementSet::TagHT) + * - SQItem is based on an STL list container (see ListDocEntry). * * Since the syntax for adding a new element to a map<> or a list<> - * differ, \ref DocEntrySet is designed as an adapter to unify the - * interfaces of \ref DocEntrySet and \ref ElementSet. + * differ, DocEntrySet is designed as an adapter to unify the + * interfaces of DocEntrySet and ElementSet. * * As an illustration of this design, please refer to the implementation - * of \ref AddEntry (or any pure virtual method) in both derived classes. + * of AddEntry (or any pure virtual method) in both derived classes. * This adapter unification of interfaces enables the parsing of a * DICOM header containing (optionaly heavily nested) sequences to be - * written recursively [see \ref Document::ParseDES - * which calls \ref Document::ParseSQ, which in turn calls - * \ref Document::ParseDES ]. + * written recursively [see Document::ParseDES + * which calls Document::ParseSQ, which in turn calls + * Document::ParseDES ]. * * \note Developpers should strongly resist to the temptation of adding * members to this class since this class is designed as an adapter diff --git a/src/gdcmDocument.cxx b/src/gdcmDocument.cxx index 72713e44..4d88d9c8 100644 --- a/src/gdcmDocument.cxx +++ b/src/gdcmDocument.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDocument.cxx,v $ Language: C++ - Date: $Date: 2007/08/29 15:30:49 $ - Version: $Revision: 1.368 $ + Date: $Date: 2007/09/17 12:16:02 $ + Version: $Revision: 1.369 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -50,7 +50,7 @@ const unsigned int Document::MAX_SIZE_LOAD_ELEMENT_VALUE = 0xfff; // 4096 /** * \brief This default constructor neither loads nor parses the file. - * You should then invoke \ref Document::Load. + * You should then invoke Document::Load. * */ Document::Document() @@ -582,7 +582,7 @@ double Document::SwapDouble(double a) // // -----------------File I/O --------------- /** - * \brief Tries to open the file \ref Document::Filename and + * \brief Tries to open the file Document::Filename and * checks the preamble when existing, * or if the file starts with an ACR-NEMA look-like element. * @return The FILE pointer on success, 0 on failure. @@ -853,7 +853,7 @@ void Document::LoadEntryBinArea(DataEntry *entry) //} /** - * \brief Compares two documents, according to \ref DicomDir rules + * \brief Compares two documents, according to DicomDir rules * \warning Does NOT work with ACR-NEMA files * \todo Find a trick to solve the pb (use RET fields ?) * @param document to compare with current one diff --git a/src/gdcmDocument.h b/src/gdcmDocument.h index 3c5ec515..874769a1 100644 --- a/src/gdcmDocument.h +++ b/src/gdcmDocument.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDocument.h,v $ Language: C++ - Date: $Date: 2007/08/22 16:14:04 $ - Version: $Revision: 1.146 $ + Date: $Date: 2007/09/17 12:16:02 $ + Version: $Revision: 1.147 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -70,13 +70,13 @@ public: std::string GetTransferSyntaxName(); // Swap code - /// 'Swap code' accessor (see \ref SwapCode ) + /// 'Swap code' accessor (see SwapCode ) int GetSwapCode() { return SwapCode; } // File I/O - /// Accessor to \ref Filename + /// Accessor to Filename const std::string &GetFileName() const { return Filename; } - /// Accessor to \ref Filename + /// Accessor to Filename virtual void SetFileName(std::string const &fileName) { if (Filename != fileName) Filename = fileName, IsDocumentModified = true; } diff --git a/src/gdcmElementSet.h b/src/gdcmElementSet.h index 332ca84b..397f342c 100644 --- a/src/gdcmElementSet.h +++ b/src/gdcmElementSet.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmElementSet.h,v $ Language: C++ - Date: $Date: 2007/08/29 15:30:49 $ - Version: $Revision: 1.58 $ + Date: $Date: 2007/09/17 12:16:02 $ + Version: $Revision: 1.59 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -32,9 +32,9 @@ typedef std::map TagDocEntryHT; //----------------------------------------------------------------------------- /** * \brief - * \ref ElementSet is based on the STL map<> container - * (see \ref ElementSet::TagHT), as opposed to \ref SQItem - * which is based on an STL list container (see \ref ListDocEntry). + * ElementSet is based on the STL map<> container + * (see ElementSet::TagHT), as opposed to SQItem + * which is based on an STL list container (see ListDocEntry). * It contains the 'zero-level- DocEntry (out of any Dicom Sequence) */ class GDCM_EXPORT ElementSet : public DocEntrySet diff --git a/src/gdcmFile.cxx b/src/gdcmFile.cxx index 2fe57fcc..5e83b61d 100644 --- a/src/gdcmFile.cxx +++ b/src/gdcmFile.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmFile.cxx,v $ Language: C++ - Date: $Date: 2007/08/27 16:14:47 $ - Version: $Revision: 1.336 $ + Date: $Date: 2007/09/17 12:16:02 $ + Version: $Revision: 1.337 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -2024,7 +2024,7 @@ bool File::Write(std::string fileName, FileType writetype) // Private /** * \brief Parse pixel data from disk of [multi-]fragment RLE encoding. - * Compute the RLE extra information and store it in \ref RLEInfo + * Compute the RLE extra information and store it in RLEInfo * for later pixel retrieval usage. */ void File::ComputeRLEInfo() @@ -2136,7 +2136,7 @@ void File::ComputeRLEInfo() /** * \brief Parse pixel data from disk of [multi-]fragment Jpeg encoding. * Compute the jpeg extra information (fragment[s] offset[s] and - * length) and store it[them] in \ref JPEGInfo for later pixel + * length) and store it[them] in JPEGInfo for later pixel * retrieval usage. */ void File::ComputeJPEGFragmentInfo() @@ -2199,14 +2199,14 @@ void File::ComputeJPEGFragmentInfo() } /** - * \brief Assuming the internal file pointer \ref Document::Fp + * \brief Assuming the internal file pointer Document::Fp * is placed at the beginning of a tag, check whether this * tag is (TestGroup, TestElem). - * \warning On success the internal file pointer \ref Document::Fp + * \warning On success the internal file pointer Document::Fp * is modified to point after the tag. * On failure (i.e. when the tag wasn't the expected tag * (TestGroup, TestElem) the internal file pointer - * \ref Document::Fp is restored to its original position. + * Document::Fp is restored to its original position. * @param testGroup The expected group of the tag. * @param testElem The expected Element of the tag. * @return True on success, false otherwise. @@ -2254,14 +2254,14 @@ bool File::ReadTag(uint16_t testGroup, uint16_t testElem) } /** - * \brief Assuming the internal file pointer \ref Document::Fp + * \brief Assuming the internal file pointer Document::Fp * is placed at the beginning of a tag (TestGroup, TestElement), * read the length associated to the Tag. - * \warning On success the internal file pointer \ref Document::Fp + * \warning On success the internal file pointer Document::Fp * is modified to point after the tag and its length. * On failure (i.e. when the tag wasn't the expected tag * (TestGroup, TestElement) the internal file pointer - * \ref Document::Fp is restored to its original position. + * Document::Fp is restored to its original position. * @param testGroup The expected Group of the tag. * @param testElem The expected Element of the tag. * @return On success returns the length associated to the tag. On failure diff --git a/src/gdcmFile.h b/src/gdcmFile.h index ab5f7c32..86866908 100644 --- a/src/gdcmFile.h +++ b/src/gdcmFile.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmFile.h,v $ Language: C++ - Date: $Date: 2007/08/22 16:14:04 $ - Version: $Revision: 1.133 $ + Date: $Date: 2007/09/17 12:16:02 $ + Version: $Revision: 1.134 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -164,9 +164,9 @@ public: int GetNumberOfScalarComponents(); int GetNumberOfScalarComponentsRaw(); - /// Accessor to \ref File::GrPixel + /// Accessor to File::GrPixel uint16_t GetGrPixel() { return GrPixel; } - /// Accessor to \ref File::NumPixel + /// Accessor to File::NumPixel uint16_t GetNumPixel() { return NumPixel; } size_t GetPixelOffset(); diff --git a/src/gdcmFileHelper.cxx b/src/gdcmFileHelper.cxx index a7bbf6fd..bfd5161a 100644 --- a/src/gdcmFileHelper.cxx +++ b/src/gdcmFileHelper.cxx @@ -4,8 +4,8 @@ Module: $RCSfile: gdcmFileHelper.cxx,v $ Language: C++ - Date: $Date: 2007/09/14 12:57:02 $ - Version: $Revision: 1.128 $ + Date: $Date: 2007/09/17 12:16:02 $ + Version: $Revision: 1.129 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -600,7 +600,7 @@ size_t FileHelper::GetRawDataSize() } /** - * \brief Access to the underlying \ref PixelReadConverter RGBA LUT + * \brief Access to the underlying PixelReadConverter RGBA LUT */ uint8_t* FileHelper::GetLutRGBA() { @@ -610,7 +610,7 @@ uint8_t* FileHelper::GetLutRGBA() } /** - * \brief Access to the underlying \ref PixelReadConverter RGBA LUT Item Number + * \brief Access to the underlying PixelReadConverter RGBA LUT Item Number */ int FileHelper::GetLutItemNumber() { @@ -618,7 +618,7 @@ int FileHelper::GetLutItemNumber() } /** - * \brief Access to the underlying \ref PixelReadConverter RGBA LUT Item Size + * \brief Access to the underlying PixelReadConverter RGBA LUT Item Size */ int FileHelper::GetLutItemSize() { @@ -769,7 +769,7 @@ bool FileHelper::Write(std::string const &fileName) break; case JPEG2000: - /// \TODO Maybe we should consider doing the compression here ! + /// \todo Maybe we should consider doing the compression here ! // PixelWriteConverter->SetCompressJPEG2000UserData(inData, expectedSize, FileInternal); SetWriteFileTypeToJPEG2000(); @@ -1356,7 +1356,7 @@ If 'SOP Class UID' exists in the native image ('true DICOM' image) --> 'Referenced SOP Instance UID' (0x0008, 0x1155) whose value is the original 'SOP Class UID' -3) TODO : find a trick to allow user to pass to the writter the list of the Dicom images +3) TO DO : find a trick to allow user to pass to the writter the list of the Dicom images or the Series, (or the Study ?) he used to created his image (MIP, MPR, cartography image, ...) These info should be stored (?) diff --git a/src/gdcmFileHelper.h b/src/gdcmFileHelper.h index 38ab9d2a..d761add2 100644 --- a/src/gdcmFileHelper.h +++ b/src/gdcmFileHelper.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmFileHelper.h,v $ Language: C++ - Date: $Date: 2007/09/04 13:14:33 $ - Version: $Revision: 1.54 $ + Date: $Date: 2007/09/17 12:16:01 $ + Version: $Revision: 1.55 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -59,7 +59,7 @@ public: void Print(std::ostream &os = std::cout, std::string const &indent = ""); - /// Accessor to \ref File + /// Accessor to File File *GetFile() { return FileInternal; } /// \brief Tells gdcm wether we want to keep ACR-NEMA-like overlays or not. diff --git a/src/gdcmJPEGFragment.h b/src/gdcmJPEGFragment.h index b3cb8c25..e4b271bc 100644 --- a/src/gdcmJPEGFragment.h +++ b/src/gdcmJPEGFragment.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmJPEGFragment.h,v $ Language: C++ - Date: $Date: 2007/08/22 16:14:04 $ - Version: $Revision: 1.22 $ + Date: $Date: 2007/09/17 12:16:01 $ + Version: $Revision: 1.23 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -37,7 +37,7 @@ namespace GDCM_NAME_SPACE * * Each instance of this class (they can be as many instances for * a given Document as they are JPEG fragments and they are - * collected in a \ref JPEGFragmentsInfo ) + * collected in a JPEGFragmentsInfo ) */ class GDCM_EXPORT JPEGFragment : public Base { diff --git a/src/gdcmJPEGFragmentsInfo.h b/src/gdcmJPEGFragmentsInfo.h index c4892ac5..f52d6be8 100644 --- a/src/gdcmJPEGFragmentsInfo.h +++ b/src/gdcmJPEGFragmentsInfo.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmJPEGFragmentsInfo.h,v $ Language: C++ - Date: $Date: 2007/08/22 16:14:04 $ - Version: $Revision: 1.23 $ + Date: $Date: 2007/09/17 12:16:01 $ + Version: $Revision: 1.24 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -29,13 +29,13 @@ namespace GDCM_NAME_SPACE { /** * \brief Utility class for gathering the informations of the collection - * of JPEG fragment[s] (see \ref JPEGFragment) when handling + * of JPEG fragment[s] (see JPEGFragment) when handling * "Encapsulated JPEG Compressed Images". * The informations on each frame are obtained during the pixel parsing - * of a gdcm::File (refer to \ref File::ComputeJPEGFragmentInfo() ). + * of a gdcm::File (refer to File::ComputeJPEGFragmentInfo() ). * They shall be used when (if necessary) decoding the fragments. * - * This class is simply a stl list<> of \ref JPEGFragment. + * This class is simply a stl list<> of JPEGFragment. */ class GDCM_EXPORT JPEGFragmentsInfo { diff --git a/src/gdcmRLEFrame.h b/src/gdcmRLEFrame.h index e6cc6882..0554ad4d 100644 --- a/src/gdcmRLEFrame.h +++ b/src/gdcmRLEFrame.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmRLEFrame.h,v $ Language: C++ - Date: $Date: 2007/08/22 16:14:04 $ - Version: $Revision: 1.22 $ + Date: $Date: 2007/09/17 12:16:01 $ + Version: $Revision: 1.23 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -38,7 +38,7 @@ namespace GDCM_NAME_SPACE * * Each instance of this class (they can be as many instances for * a given Document as they are frames and they are collected in - * a \ref RLEFramesInfo ) describes : + * a RLEFramesInfo ) describes : * - the total number of segments (up to 15), * - the offsets of each segment of the frame, * - the (corresponding) lengths of each segment of the frame. diff --git a/src/gdcmRLEFramesInfo.h b/src/gdcmRLEFramesInfo.h index dfabdf4b..9ea93c44 100644 --- a/src/gdcmRLEFramesInfo.h +++ b/src/gdcmRLEFramesInfo.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmRLEFramesInfo.h,v $ Language: C++ - Date: $Date: 2007/08/22 16:14:04 $ - Version: $Revision: 1.24 $ + Date: $Date: 2007/09/17 12:16:01 $ + Version: $Revision: 1.25 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -28,17 +28,17 @@ namespace GDCM_NAME_SPACE { /** * \brief Utility class for gathering the informations of the collection - * of RLE frame[s] (see \ref RLEFrame) when handling + * of RLE frame[s] (see RLEFrame) when handling * "Encapsulated RLE Compressed Images" (see PS 3.5-2003 annex G). * Note: a classical image can be considered as the degenerated case * of a multiframe image. In this case the collection is limited * to a single individual frame. * The informations on each frame are obtained during the pixel parsing * of a gdcm::File (refer to - * \ref File::ComputeRLEInfo() ). + * File::ComputeRLEInfo() ). * They shall be used when (if necessary) decoding the frames. * - * This class is simply a stl list<> of \ref RLEFrame. + * This class is simply a stl list<> of RLEFrame. */ class GDCM_EXPORT RLEFramesInfo { diff --git a/src/gdcmSQItem.h b/src/gdcmSQItem.h index e45c2529..94918015 100644 --- a/src/gdcmSQItem.h +++ b/src/gdcmSQItem.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmSQItem.h,v $ Language: C++ - Date: $Date: 2007/08/29 15:30:50 $ - Version: $Revision: 1.55 $ + Date: $Date: 2007/09/17 12:16:01 $ + Version: $Revision: 1.56 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -67,10 +67,10 @@ public: /// \brief Sets the ordinal position of a given SQItem void SetSQItemNumber(int itemNumber) { SQItemNumber = itemNumber; } - /// \brief Accessor on \ref SQDepthLevel. + /// \brief Accessor on SQDepthLevel. int GetDepthLevel() { return SQDepthLevel; } - /// \brief Accessor on \ref SQDepthLevel. + /// \brief Accessor on SQDepthLevel. void SetDepthLevel(int depth) { SQDepthLevel = depth; } virtual void Copy(DocEntrySet *set); @@ -86,11 +86,11 @@ protected: ListDocEntry::iterator ItDocEntries; private: - /// \brief Sequences can be nested. This \ref SQDepthLevel represents + /// \brief Sequences can be nested. This SQDepthLevel represents /// the level of the nesting of instances of this class. - /// \ref SQDepthLevel and its \ref SeqEntry::SQDepthLevel + /// SQDepthLevel and its SeqEntry::SQDepthLevel /// counterpart are only defined on printing purposes - /// (see \ref Print). + /// (see Print). int SQDepthLevel; /// \brief SQ Item ordinal number diff --git a/src/gdcmSeqEntry.h b/src/gdcmSeqEntry.h index e29f3fef..5869387e 100644 --- a/src/gdcmSeqEntry.h +++ b/src/gdcmSeqEntry.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmSeqEntry.h,v $ Language: C++ - Date: $Date: 2007/08/29 15:30:50 $ - Version: $Revision: 1.46 $ + Date: $Date: 2007/09/17 12:16:01 $ + Version: $Revision: 1.47 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -97,10 +97,10 @@ private: /// sequence terminator item DocEntry *SeqTerm; - /// \brief Defines the depth level of this \ref SeqEntry inside - /// the (optionaly) nested sequences. \ref SQDepthLevel - /// and its \ref SQItem::SQDepthLevel counterpart - /// are only defined on printing purposes (see \ref Print). + /// \brief Defines the depth level of this SeqEntry inside + /// the (optionaly) nested sequences. SQDepthLevel + /// and its SQItem::SQDepthLevel counterpart + /// are only defined on printing purposes (see Print). int SQDepthLevel; }; } // end namespace gdcm diff --git a/src/gdcmVR.cxx b/src/gdcmVR.cxx index d68b9155..395ca981 100644 --- a/src/gdcmVR.cxx +++ b/src/gdcmVR.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmVR.cxx,v $ Language: C++ - Date: $Date: 2007/09/15 11:13:37 $ - Version: $Revision: 1.59 $ + Date: $Date: 2007/09/17 12:16:01 $ + Version: $Revision: 1.60 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -86,7 +86,7 @@ VR::~VR() /** * \brief Simple predicate that checks whether the given argument - * corresponds to the Value Representation of a \ref DataEntry . + * corresponds to the Value Representation of a DataEntry . * @param tested value representation to check for. */ bool VR::IsVROfBinaryRepresentable(VRKey const &tested) diff --git a/src/gdcmVR.h b/src/gdcmVR.h index e33d5e02..80d6a340 100644 --- a/src/gdcmVR.h +++ b/src/gdcmVR.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmVR.h,v $ Language: C++ - Date: $Date: 2007/08/22 16:14:05 $ - Version: $Revision: 1.33 $ + Date: $Date: 2007/09/17 12:16:01 $ + Version: $Revision: 1.34 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -56,7 +56,7 @@ public: bool IsVROfStringRepresentable(VRKey const &tested); /// \brief Simple predicate that checks whether the given argument - /// corresponds to the Value Representation of a \ref SeqEntry + /// corresponds to the Value Representation of a SeqEntry bool IsVROfSequence(VRKey const &tested) { return tested == "SQ"; } // Remove inline optimization for VS6 -- 2.45.1