]> Creatis software - gdcm.git/blob - src/gdcmObject.h
ENH: Some cosmetic cleanup of gdcmFile, main changes are: lgrTotal -> ImageDataSize...
[gdcm.git] / src / gdcmObject.h
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmObject.h,v $
5   Language:  C++
6   Date:      $Date: 2004/06/20 18:08:48 $
7   Version:   $Revision: 1.17 $
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.htm 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 GDCMOBJECT_H
20 #define GDCMOBJECT_H
21
22 #include <string>
23 #include <list>
24 #include "gdcmCommon.h"
25 #include "gdcmDocEntry.h"
26 #include "gdcmDocument.h"
27 #include "gdcmDicomDirElement.h"
28 #include "gdcmSQItem.h"
29
30 //-----------------------------------------------------------------------------
31 class gdcmObject;
32 typedef std::list<gdcmObject *> ListContent;
33
34 //-----------------------------------------------------------------------------
35 /**
36  * \ingroup gdcmObject
37  * \brief   Base object
38  */
39 class GDCM_EXPORT gdcmObject : public gdcmSQItem
40 {
41 public:
42
43    /**
44     * \brief   Sets the print level for the Dicom Header 
45     * \note    0 for Light Print; 1 for 'medium' Print, 2 for Heavy
46     */
47    void SetPrintLevel(int level) 
48       { printLevel = level; };
49    
50    TagDocEntryHT GetEntry(void);
51    void FillObject(std::list<gdcmElement> elemList);
52
53 protected:
54
55    // Constructor and destructor are protected to avoid end user to
56    // instanciate from this class.
57    gdcmObject(TagDocEntryHT *ptagHT, int depth = 0);
58    virtual ~gdcmObject(void);
59
60 // Members :
61    ///\brief detail level to be printed 
62    int printLevel;
63
64 private:
65 };
66
67 //-----------------------------------------------------------------------------
68 #endif