]> Creatis software - gdcm.git/blob - src/gdcmDicomDirPatient.h
STYLE: ivars should start with a capital letter. Accessors should be const to avoid...
[gdcm.git] / src / gdcmDicomDirPatient.h
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmDicomDirPatient.h,v $
5   Language:  C++
6   Date:      $Date: 2004/10/25 04:08:20 $
7   Version:   $Revision: 1.12 $
8                                                                                 
9   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10   l'Image). All rights reserved. See Doc/License.txt or
11   http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
12                                                                                 
13      This software is distributed WITHOUT ANY WARRANTY; without even
14      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15      PURPOSE.  See the above copyright notices for more information.
16                                                                                 
17 =========================================================================*/
18
19 #ifndef GDCMPATIENT_H
20 #define GDCMPATIENT_H
21
22 #include "gdcmDicomDirObject.h"
23 #include "gdcmDicomDirStudy.h"
24 #include "gdcmSQItem.h"
25
26 namespace gdcm 
27 {
28
29 //-----------------------------------------------------------------------------
30 typedef std::list<DicomDirStudy*> ListDicomDirStudy;
31
32 //-----------------------------------------------------------------------------
33 class GDCM_EXPORT DicomDirPatient : public DicomDirObject 
34 {
35 public:
36    DicomDirPatient(SQItem *s, TagDocEntryHT *ptagHT); 
37    DicomDirPatient(TagDocEntryHT *ptagHT); 
38
39    ~DicomDirPatient();
40
41    void Print(std::ostream &os = std::cout);
42    void Write(std::ofstream *fp, FileType t);
43
44    /// Returns the STUDY chained List for this PATIENT.
45    ListDicomDirStudy const & GetDicomDirStudies() const { return Studies; };
46
47    /// adds the passed STUDY to the STUDY chained List for this PATIENT.
48    void AddDicomDirStudy (DicomDirStudy *obj) { Studies.push_back(obj); };
49
50    ///  TODO
51    DicomDirStudy* NewStudy(); 
52          
53 private:
54
55    /// chained list of DicomDirStudy
56    ListDicomDirStudy Studies;
57 };
58 } // end namespace gdcm
59
60 //-----------------------------------------------------------------------------
61 #endif