]> Creatis software - gdcm.git/blobdiff - src/gdcmDicomDirMeta.h
ENH: Apparently implementation of GetMacAddress linux also works on my cygwin
[gdcm.git] / src / gdcmDicomDirMeta.h
index 0e665a59979a036410bfa5feca1dba4ce5c5cfed..334e52fb5c23ca44b7874c97219a61c2efb5f67d 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDicomDirMeta.h,v $
   Language:  C++
-  Date:      $Date: 2004/10/12 04:35:44 $
-  Version:   $Revision: 1.9 $
+  Date:      $Date: 2005/01/11 15:15:38 $
+  Version:   $Revision: 1.15 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
 #define GDCMDICOMDIRMETA_H
 
 #include "gdcmDicomDirObject.h"
+
 namespace gdcm 
 {
 
 //-----------------------------------------------------------------------------
+/**
+ * \ingroup DicomDirMeta
+ * \brief   Meta Elements (group 0002) of a DicomDir
+ */
 class GDCM_EXPORT DicomDirMeta : public DicomDirObject 
 {
 public:
-   DicomDirMeta(TagDocEntryHT *ptagHT); 
-
+   DicomDirMeta(); 
    ~DicomDirMeta();
 
    virtual void Print(std::ostream &os = std::cout);
-   virtual void Write(FILE * fp, FileType t);
+   virtual void WriteContent(std::ofstream *fp, FileType t);
 };
 } // end namespace gdcm
 //-----------------------------------------------------------------------------