]> Creatis software - gdcm.git/blob - src/gdcmDocEntrySet.cxx
* Erroneous leading white fix:
[gdcm.git] / src / gdcmDocEntrySet.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmDocEntrySet.cxx,v $
5   Language:  C++
6   Date:      $Date: 2004/06/20 18:08:47 $
7   Version:   $Revision: 1.9 $
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 #include <errno.h>
20 #include "gdcmDebug.h"
21 #include "gdcmCommon.h"
22 #include "gdcmGlobal.h"
23 #include "gdcmDocEntrySet.h"
24 #include "gdcmException.h"
25 #include "gdcmDocEntry.h"
26 #include "gdcmSeqEntry.h"
27 #include "gdcmValEntry.h"
28 #include "gdcmBinEntry.h"
29
30 //-----------------------------------------------------------------------------
31 // Constructor / Destructor
32 /**
33  * \ingroup gdcmDocEntrySet
34  * \brief   Constructor from a given gdcmDocEntrySet
35  */
36 gdcmDocEntrySet::gdcmDocEntrySet(int depthLevel) {
37    SQDepthLevel = depthLevel + 1;
38 }
39 /**
40  * \brief   Canonical destructor.
41  */
42 gdcmDocEntrySet::~gdcmDocEntrySet(){
43 }
44 //-----------------------------------------------------------------------------
45 // Print
46 /*
47  * \ingroup gdcmDocEntrySet
48  * \brief   canonical Printer
49  */
50
51
52 //-----------------------------------------------------------------------------
53 // Public
54
55 //-----------------------------------------------------------------------------
56 // Protected
57
58
59 //-----------------------------------------------------------------------------
60 // Private
61
62
63 //-----------------------------------------------------------------------------