]> Creatis software - gdcm.git/blobdiff - src/gdcmDicomDirSerie.h
ENH: Adding jpeg error handling. As quoted we could be more fancy and throw an except...
[gdcm.git] / src / gdcmDicomDirSerie.h
index 97b67cb96f91dce88eec14cee04f27f821565ba9..81e92bdda88a36b9a09618a9cff2483702337b9e 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDicomDirSerie.h,v $
   Language:  C++
-  Date:      $Date: 2005/01/25 11:11:58 $
-  Version:   $Revision: 1.24 $
+  Date:      $Date: 2005/02/04 16:51:36 $
+  Version:   $Revision: 1.27 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -38,20 +38,18 @@ public:
    DicomDirSerie(bool empty=false); 
    ~DicomDirSerie();
 
-   void Print( std::ostream &os = std::cout, std::string const & indent = "" );
+   void Print( std::ostream &os = std::cout, std::string const &indent = "" );
    void WriteContent( std::ofstream *fp, FileType t );
-   // should avoid exposing internal mechanism
-   DicomDirImage *GetFirstImage();
-   DicomDirImage *GetNextImage();
-   DicomDirImage *GetLastImage();
-        
-   /// adds the passed IMAGE to the IMAGE chained List for this SERIE.    
-   void AddImage(DicomDirImage *obj) { Images.push_back(obj); };
-   DicomDirImage *NewImage();
 
+   // Image methods
+   DicomDirImage *NewImage();
+   /// Add a new gdcm::DicomDirImage to the Serie
+   void AddImage(DicomDirImage *obj) { Images.push_back(obj); };
    void ClearImage();
 
+   DicomDirImage *GetFirstImage();
+   DicomDirImage *GetNextImage();
+
 private:
 
    ///chained list of DicomDirImages (to be exploited recursively)