]> 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 37111f3b322eb2c5cbca640c40880f6f961d7dbb..334e52fb5c23ca44b7874c97219a61c2efb5f67d 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDicomDirMeta.h,v $
   Language:  C++
-  Date:      $Date: 2004/09/27 08:39:06 $
-  Version:   $Revision: 1.8 $
+  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
 
 #include "gdcmDicomDirObject.h"
 
+namespace gdcm 
+{
+
 //-----------------------------------------------------------------------------
-class GDCM_EXPORT gdcmDicomDirMeta : public gdcmDicomDirObject 
+/**
+ * \ingroup DicomDirMeta
+ * \brief   Meta Elements (group 0002) of a DicomDir
+ */
+class GDCM_EXPORT DicomDirMeta : public DicomDirObject 
 {
 public:
-   gdcmDicomDirMeta(TagDocEntryHT *ptagHT); 
-
-   ~gdcmDicomDirMeta();
+   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
 //-----------------------------------------------------------------------------
 #endif