]> Creatis software - gdcm.git/blobdiff - src/gdcmRLEFrame.h
use GDCM_NAME_SPACE:: instead of gdcm::, even in Examples ...
[gdcm.git] / src / gdcmRLEFrame.h
index b667116bdc9f0f013ea24614cca7cdda74bed8c5..0554ad4db6fcea4c3a3e3f4ee9df99b96ea0ccb3 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmRLEFrame.h,v $
   Language:  C++
-  Date:      $Date: 2005/11/28 17:24:21 $
-  Version:   $Revision: 1.19 $
+  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
 =========================================================================*/
 
 
-#ifndef GDCMRLEFRAME_H
-#define GDCMRLEFRAME_H
+#ifndef _GDCMRLEFRAME_H_
+#define _GDCMRLEFRAME_H_
 
 #include "gdcmBase.h"
 
 #include <iostream>
 #include <fstream>
 
-namespace gdcm 
+namespace GDCM_NAME_SPACE
 {
 /**
  * \brief Utility class for summerizing the informations of a SINGLE RLE
@@ -38,12 +38,12 @@ namespace gdcm
  *
  *        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.
  */
-   class GDCM_EXPORT RLEFrame : public Base
+class GDCM_EXPORT RLEFrame : public Base
 {
 friend class File;
 friend class RLEFramesInfo;
@@ -64,7 +64,6 @@ private:
    bool ReadAndDecompressRLEFragment( uint8_t *subRaw, long fragmentSize,
                                       long rawSegmentSize, std::ifstream *fp );
 
-//private:
    unsigned int NumberOfFragments;
    long Offset[15];
    long Length[15];