]> Creatis software - gdcm.git/commitdiff
Doxygen (1.5.2) doen't want \\ref option.
authorjpr <jpr>
Mon, 17 Sep 2007 12:16:01 +0000 (12:16 +0000)
committerjpr <jpr>
Mon, 17 Sep 2007 12:16:01 +0000 (12:16 +0000)
Avoid tons of warnings

20 files changed:
src/gdcmDicomDir.h
src/gdcmDictEntry.h
src/gdcmDocEntry.h
src/gdcmDocEntrySet.cxx
src/gdcmDocEntrySet.h
src/gdcmDocument.cxx
src/gdcmDocument.h
src/gdcmElementSet.h
src/gdcmFile.cxx
src/gdcmFile.h
src/gdcmFileHelper.cxx
src/gdcmFileHelper.h
src/gdcmJPEGFragment.h
src/gdcmJPEGFragmentsInfo.h
src/gdcmRLEFrame.h
src/gdcmRLEFramesInfo.h
src/gdcmSQItem.h
src/gdcmSeqEntry.h
src/gdcmVR.cxx
src/gdcmVR.h

index 9fcce6802f278193cacc45fd3a07430f7a4fa7b0..eb2ac4d7a38a5ac17ea6744353145470c14d9c48 100644 (file)
@@ -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;}
index 61f766fde0bd2b5f1b541b9cd9b7062a03948cce..24720c9369e9151fe7a1334cd27c837bd2f51c3e 100644 (file)
@@ -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;
    
index d58b1c0b460b9bd5cf588f1e8676f54c025774a1..a756fa7d3d20bd4ca5488f63a35484819dc1b21c 100644 (file)
@@ -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:
index d3a56c7aec6bffd073140307588c90746ba2d800..fbc4764e0dd81562365854a9326319b6eb4373ec 100644 (file)
@@ -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  
index 5e82772cda9f41187052c51b605bdf6043a42a66..7f31fb4783d2d1126630ca10461d3cad9a5eaba2 100644 (file)
@@ -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 
index 72713e4483292140701d7dbc21ec792ba5346fe9..4d88d9c8d623b85b76f12f8117f19fbefb591302 100644 (file)
@@ -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
index 3c5ec515c22f4055f90b7ea6e43d498c30380b8c..874769a122b11f9465fa85df633459f085406d46 100644 (file)
@@ -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; }
index 332ca84bddfc8058f16ead2cfc1df37195a6870e..397f342c5290e650b61ac76b8f94f9f6e20d2d3d 100644 (file)
@@ -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<TagKey, DocEntry *> 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
index 2fe57fcc54bb20c9d5c34c4aac29f1ec156f5194..5e83b61d4b9ac97bbe75ffc2490da5c8efddfd5f 100644 (file)
@@ -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
index ab5f7c3299d6621e3352d1c60d95f5f873422764..86866908f34f68c5ded235aab4d5862a13ba5657 100644 (file)
@@ -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();
index a7bbf6fd324ca31862ffab733ac4e1e9a71494ef..bfd5161a8be47644225cf7ccdbaf3ce46d1aa72e 100644 (file)
@@ -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 (?)
index 38ab9d2a39abd23b7a67e461530e77b093ca7bc6..d761add27ba31d6323ed31abceb773991c26cb0f 100644 (file)
@@ -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.  
index b3cb8c255a609511b2ccab7a8c2c6cff60b036dd..e4b271bc988dc17ca6113b3210d657c33d10beeb 100644 (file)
@@ -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
 {
index c4892ac529acdca041ea1fa1c1827296985be827..f52d6be8f94e3059df64086eaefbc2ee576b3f39 100644 (file)
@@ -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
 {
index e6cc6882b26eca58b1e7123afc2c37ec01589ab9..0554ad4db6fcea4c3a3e3f4ee9df99b96ea0ccb3 100644 (file)
@@ -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.
index dfabdf4bffc554a0f96fd88837f8b2582e06279f..9ea93c4434a21d1b15d9cd9d2aea4858fa44a579 100644 (file)
@@ -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
 {
index e45c252990ef6fb60612cd1c2ebf981612ac8b56..94918015755301409555a5a2b0c709bdcd1698ab 100644 (file)
@@ -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 
index e29f3fef3d23e7adaa1e6c70e428e01eca0b4a2d..5869387e7e94332b270bb03f46d0086b2ff08d35 100644 (file)
@@ -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
index d68b915536925c7224bd9c41f7502f854e66c9eb..395ca981ae8459c3becc99e789b50041fb0917a6 100644 (file)
@@ -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)
index e33d5e02292970794345e3d62e489a6489ad36ff..80d6a3406b34a333e06d06fc59a95c2ebd8be632 100644 (file)
@@ -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