]> Creatis software - gdcm.git/blobdiff - src/gdcmDocEntry.h
Fix mistypings
[gdcm.git] / src / gdcmDocEntry.h
index 2534f3fabc6270f5f4bee35c8c0558f6812c68c4..a756fa7d3d20bd4ca5488f63a35484819dc1b21c 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDocEntry.h,v $
   Language:  C++
-  Date:      $Date: 2006/07/06 16:57:06 $
-  Version:   $Revision: 1.66 $
+  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
@@ -16,8 +16,8 @@
                                                                                 
 =========================================================================*/
 
-#ifndef GDCMDOCENTRY_H
-#define GDCMDOCENTRY_H
+#ifndef _GDCMDOCENTRY_H_
+#define _GDCMDOCENTRY_H_
 
 #include "gdcmRefCounter.h"
 #include "gdcmDictEntry.h"
@@ -25,7 +25,7 @@
 #include <iostream>
 #include <fstream>
 
-namespace gdcm 
+namespace GDCM_NAME_SPACE 
 {
 class File;
 class SeqEntry;
@@ -41,7 +41,8 @@ class GDCM_EXPORT DocEntry : public RefCounter
 
 public:
    virtual void Print (std::ostream &os = std::cout, std::string const &indent = ""); 
-   virtual void WriteContent(std::ofstream *fp, FileType filetype);
+   virtual void WriteContent(std::ofstream *fp, FileType filetype, 
+                             bool insideMetaElements, bool insideSequence);
 
    /// \brief  Gets the DicEntry of the current Dicom entry
    /// @return The DicEntry of the current Dicom entry
@@ -177,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: