]> Creatis software - gdcm.git/blobdiff - src/gdcmFile.h
* Erroneous leading white fix:
[gdcm.git] / src / gdcmFile.h
index d5c602c8778a17225e693901631d612981b4b495..dd5b4655e87e720530cc6f336f11014260b4cbd4 100644 (file)
@@ -1,5 +1,21 @@
-// gdcmFile.h
-//-----------------------------------------------------------------------------
+/*=========================================================================
+                                                                                
+  Program:   gdcm
+  Module:    $RCSfile: gdcmFile.h,v $
+  Language:  C++
+  Date:      $Date: 2004/06/20 18:08:47 $
+  Version:   $Revision: 1.30 $
+                                                                                
+  Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
+  l'Image). All rights reserved. See Doc/License.txt or
+  http://www.creatis.insa-lyon.fr/Public/Gdcm/License.htm for details.
+                                                                                
+     This software is distributed WITHOUT ANY WARRANTY; without even
+     the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+     PURPOSE.  See the above copyright notices for more information.
+                                                                                
+=========================================================================*/
+
 #ifndef GDCMFILE_H
 #define GDCMFILE_H
 
@@ -16,8 +32,16 @@ class GDCM_EXPORT gdcmFile
 {
 public:
    gdcmFile(gdcmHeader *header);
-   gdcmFile(std::string & filename);
-   gdcmFile(const char * filename);
+   gdcmFile(std::string & filename, 
+              bool  exception_on_error = false, 
+              bool  enable_sequences   = false,
+              bool  skip_shadow        = false);
+   gdcmFile(const char * filename, 
+              bool  exception_on_error = false, 
+              bool  enable_sequences   = false,
+              bool  skip_shadow        = false);
    virtual ~gdcmFile(void);
        
    gdcmHeader *GetHeader(void);
@@ -64,9 +88,14 @@ public:
    bool WriteDcmImplVR(const char * fileName);
    bool WriteDcmExplVR(std::string fileName);
    bool WriteAcr      (std::string fileName);
+
    // Body in file gdcmParse.cxx
    bool ParsePixelData(void);
+
+   inline virtual bool SetEntryByNumber(std::string content,
+                                        guint16 group, guint16 element)
+      { GetHeader()->SetEntryByNumber(content,group,element); }
+
      
 protected:
    bool WriteBase(std::string FileName, FileType type);
@@ -89,22 +118,28 @@ private:
    bool gdcm_read_RLE_file      (FILE *fp,void * image_buffer); 
 
 // Variables
-   /// Header to use to load the file
-   gdcmHeader *Header;   
+
+   /// \brief Header to use to load the file
+   gdcmHeader *Header;
+       
+       /// \brief Whether the underlying \ref gdcmHeader was loaded by
+   ///  the constructor or passed to the constructor. When false
+   ///  the destructor is in charge of deletion.
    bool SelfHeader;
 
+   /// \brief to hold the Pixels (when read)
    void* PixelData;
    
-   /// Area length to receive the pixels
+   /// \brief Area length to receive the pixels
    size_t lgrTotaleRaw;
    
-   /// Area length to receive the RGB pixels
+   /// \brief Area length to receive the RGB pixels
    /// from Grey Plane + Palette Color  
    size_t lgrTotale; 
        
-  /// ==1  if GetImageDataRaw was used
-  /// ==0  if GetImageData    was used
-  /// ==-1 if ImageData never read                       
+  /// \brief ==1  if GetImageDataRaw was used
+  ///        ==0  if GetImageData    was used
+  ///        ==-1 if ImageData never read                       
    int PixelRead;     
 
    /// weather already parsed