]> Creatis software - gdcm.git/blob - src/gdcm.h
modif DcmWrite
[gdcm.git] / src / gdcm.h
1 // gdcm.h
2
3 // gdcmlib Intro:  
4 // * gdcmlib is a library dedicated to reading and writing dicom files.
5 // * LGPL for the license
6 // * lightweigth as opposed to CTN or DCMTK which come bundled which try
7 //   to implement the full DICOM standard (networking...). gdcmlib concentrates
8 //   on reading and writing
9 // * Formats: this lib should be able to read ACR-NEMA v1 and v2, Dicom v3 (as
10 //   stated in part10). [cf dcmtk/dcmdata/docs/datadict.txt]
11 // * Targeted plateforms: Un*xes and Win32/VC++6.0
12 //
13 //
14 // TODO
15 // The declarations commented out and starting with "TODO Swig" needed
16 // to be temporarily removed for swig to proceed correctly (in fact
17 // problems appears at loading of _gdcm.[so/dll]). So, simply uncomment
18 // the declaration once you provided the definition of the method...
19
20 #include <string>
21 #ifdef _MSC_VER
22 using namespace std;  // string type lives in the std namespace on VC++
23 #endif
24
25 #include <iostream>
26 #include <stddef.h>   // For size_t
27 #include <stdio.h>    // FIXME For FILE on GCC only
28 #include <list>
29 #include <map>
30
31                       // The requirement for the hash table (or map) that
32                       // we shall use:
33                       // 1/ First, next, last (iterators)
34                       // 2/ should be sortable (i.e. sorted by TagKey). This
35                       //    condition shall be droped since the Win32/VC++
36                       //    implementation doesn't look a sorted one. Pffff....
37                       // 3/ Make sure we can setup some default size value,
38                       //    which should be around 4500 entries which is the
39                       //    average dictionary size (said JPR)
40                       //
41                       // En fait, je disais que dans LE Directory Dicom (dans son etat 2002)
42                       // il y a 1600 entrees.
43                       // Une valeur raisonable pour un  majorant du nombre d'entrees
44                       // dans une entete DICOM d'une image semble semble etre 300
45                       // Si on 'decortique' les elements SQ (ce qui ne semble pas etre fait pour le moment)
46                       // on risque en fait de depasser ... un nombre non previsible dans le cas d'une entree SQ
47                       // contenant lui même un tres grand nombre d'entrees ?!?)
48                       // Quant au nombre d'entrees dans un DICOMDIR, c'est encore pire : il n'est limité
49                       // que par la taille d'un CD-ROM (les DVD-ROM ne sont pas encore pris en compte)
50                       // On peut s'attendre a 30 entrees par fichier dicom présent sur le CD-ROM
51                       // REMARQUE : il faudra se pencher sur le pb de la creation du DICOMDIR lorsqu'on voudra 
52                       // exporter des images lisibles par les consoles cliniques 
53                       // et pas seulement importables dans e-film. 
54
55 #ifdef __GNUC__
56 #include <stdint.h>
57 #define guint16 uint16_t
58 #define guint32 uint32_t
59 #endif
60
61 #ifdef _MSC_VER 
62 typedef  unsigned short guint16;
63 typedef  unsigned int   guint32;
64 #endif
65
66 #ifdef _MSC_VER
67 #define GDCM_EXPORT __declspec( dllexport )
68 #else
69 #define GDCM_EXPORT
70 #endif
71
72 //
73 // ---------------------------------------------------- gdcmDictEntry
74 //
75 //      c'est une ligne du Dictionnaire Dicom
76 //
77
78
79 ////////////////////////////////////////////////////////////////////////////
80 // Tag based hash tables.
81 // We shall use as keys the strings (as the C++ type) obtained by
82 // concatenating the group value and the element value (both of type
83 // unsigned 16 bit integers in Dicom) expressed in hexadecimal.
84 // Example: consider the tag given as (group, element) = (0x0010, 0x0010).
85 // Then the corresponding TagKey shall be the string 0010|0010 (where
86 // the | (pipe symbol) acts as a separator). Refer to 
87 // gdcmDictEntry::TranslateToKey for this conversion function.
88
89 typedef string TagKey;
90
91 class GDCM_EXPORT gdcmDictEntry {
92 private:
93         guint16 group;    // e.g. 0x0010
94         guint16 element;  // e.g. 0x0103
95         string  vr;       // Value Representation i.e. some clue about the nature
96                           // of the data represented e.g. "FD" short for
97                           // "Floating Point Double"
98         // CLEANME: find the official dicom name for this field !
99         string  fourth;   // Fourth field containing some semantics.
100         string  name;     // e.g. "Patient_Name"
101         TagKey  key;      // Redundant with (group, element) but we add it
102                           // on efficiency purposes.
103         // DCMTK has many fields for handling a DictEntry (see below). What are the
104         // relevant ones for gdcmlib ?
105         //      struct DBI_SimpleEntry {
106         //         Uint16 upperGroup;
107         //         Uint16 upperElement;
108         //         DcmEVR evr;
109         //         const char* tagName;
110         //         int vmMin;
111         //         int vmMax;
112         //         const char* standardVersion;
113         //         DcmDictRangeRestriction groupRestriction;
114         //         DcmDictRangeRestriction elementRestriction;
115         //       };
116 public:
117         
118         // fabrique une ligne de Dictionnaire Dicom à partir des parametres en entrée
119
120         gdcmDictEntry(guint16 group, 
121                           guint16 element,
122                       string vr     = "Unknown",
123                       string fourth = "Unknown",
124                       string name   = "Unknown");
125                                           
126         // fabrique une 'clé' par concaténation du numGroupe et du numElement
127
128         static TagKey TranslateToKey(guint16 group, guint16 element);
129         
130         guint16 GetGroup(void)  { return group; };
131         guint16 GetElement(void){return element;};
132         string  GetVR(void)     {return vr;     };
133         void    SetVR(string);
134         void    SetKey(string k){ key = k;              }
135         bool    IsVrUnknown(void);
136         string  GetFourth(void) {return fourth;};
137         string  GetName(void)   {return name;  };
138         string  GetKey(void)    {return key;   };
139 };
140   
141 //
142 // ---------------------------------------------------- gdcmDict
143 // 
144 //      c'est le Dictionnaire Dicom
145 //
146  
147 ////////////////////////////////////////////////////////////////////////////
148 // A single DICOM dictionary i.e. a container for a collection of dictionary
149 // entries. There should be a single public dictionary (THE dictionary of
150 // the actual DICOM v3) but as many shadow dictionaries as imagers 
151 // combined with all software versions...
152
153 typedef map<TagKey, gdcmDictEntry*> TagHT;
154         // Table de Hachage : (group,Elem) --> pointeur vers une ligne du Dictionnaire Dicom
155
156 class GDCM_EXPORT gdcmDict {
157         string name;
158         string filename;
159         TagHT entries;
160 public:
161         // rempli le Dictionnaire Dicom à partir d'un fichier texte
162         gdcmDict(const char* FileName);   // Read Dict from disk
163         
164         int AddNewEntry (gdcmDictEntry* NewEntry);
165         int ReplaceEntry(gdcmDictEntry* NewEntry);
166         int RemoveEntry (TagKey k);
167         int RemoveEntry (guint16 group, guint16 element);
168         
169         // renvoie une ligne de Dictionnaire Dicom à partir de (numGroup, numElement)
170         gdcmDictEntry * GetTag(guint32 group, guint32 element);
171         
172         void Print(ostream&);
173         TagHT & GetEntries(void) { return entries; }
174 };
175
176
177 //
178 // ---------------------------------------------------- gdcmDictSet
179 //
180 //      Ensemble de Dictionnaires Dicom (le public + 'des' privés)
181 //      Au cas ou l'on traiterait un jour les 'dictionnaires privés'
182 //       - pratiquement un par constructeur, par machine, et par version du logiciel -
183 //
184 //
185
186 ////////////////////////////////////////////////////////////////////////////
187 // Container for managing a set of loaded dictionaries. Sharing dictionaries
188 // should avoid :
189 // * reloading an allready loaded dictionary,
190 // * having many in memory representations of the same dictionary.
191
192 typedef string DictKey;
193 typedef map<DictKey, gdcmDict*> DictSetHT;
194
195 class GDCM_EXPORT gdcmDictSet {
196 private:
197         string DictPath;      // Directory path to dictionaries
198         DictSetHT dicts;
199         int AppendDict(gdcmDict* NewDict);
200         int LoadDictFromFile(string filename, DictKey);
201         void SetDictPath(void);
202 public:
203         gdcmDictSet(void);    // loads THE DICOM v3 dictionary
204         // TODO Swig int LoadDictFromFile(string filename);
205    // QUESTION: the following function might not be thread safe !? Maybe
206    //           we need some mutex here, to avoid concurent creation of
207    //           the same dictionary !?!?!
208         // TODO Swig int LoadDictFromName(string filename);
209         // TODO Swig int LoadAllDictFromDirectory(string DirectoryName);
210         // TODO Swig string* GetAllDictNames();
211         //
212         // Question : ne faudra-t-il pas mettre LE dictionnaire DICOM dans un Directory
213         // et les eventuels 'dictionnaires prives' dans un autre?
214         // (pour eviter a un utilisateur mal dégourdi de tout saccager ?)
215         //
216         int LoadDicomV3Dict(void);
217         void Print(ostream&);
218         gdcmDict* GetDict(DictKey DictName);
219         gdcmDict* GetDefaultPublicDict(void);
220 };
221
222
223 //
224 // ---------------------------------------------------- ElValue
225 //
226 //      C'est un Element Dicom
227 //      (ce qu'on a trouve dans l'entete de l'image
228 //      + ce qu'on est allé chercher dans le Dictionnaire Dicom)
229 //
230
231 // QUESTION:
232 //
233 // Ne faudrait-il pas trouver un autre nom, qui preterait moins à confusion?
234 // ElValue n'EST PAS la 'valeur d'un Element', mais la reunion d'infos
235 // trouvees dans l'Entete du fichier ET dans le Dictionnaire DICOM
236 //
237
238 // The dicom header of a Dicom file contains a set of such ELement VALUES
239 // (when successfuly parsed against a given Dicom dictionary)
240
241 class GDCM_EXPORT ElValue {
242 private:
243         gdcmDictEntry *entry;
244         guint32 LgrElem;
245         bool ImplicitVr;       // Even when reading explicit vr files, some
246                                // elements happen to be implicit. Flag them here
247                                // since we can't use the entry->vr without breaking
248                                // the underlying dictionary.
249         // Might prove of some interest (see _ID_DCM_ELEM)
250         // int Swap;
251 public:
252         string  value;     // used to be char * valeurElem
253         size_t Offset;     // Offset from the begining of file for direct user access
254         
255         ElValue(gdcmDictEntry*);
256         void SetDictEntry(gdcmDictEntry *NewEntry) { entry = NewEntry; };
257         bool   IsVrUnknown(void) { return entry->IsVrUnknown(); };
258         void SetImplicitVr(void) { ImplicitVr = true;                   };
259         bool  IsImplicitVr(void) { return ImplicitVr;                   };
260
261         guint16 GetGroup(void)   { return entry->GetGroup();    };      
262         guint16 GetElement(void) { return entry->GetElement();  };
263         string  GetKey(void)     { return entry->GetKey();      };
264         string  GetName(void)    { return entry->GetName();     };
265         
266         string  GetVR(void)              { return entry->GetVR();               };
267         void    SetVR(string v)  { entry->SetVR(v);                     }; 
268                 
269         // Question :
270         // Un champ privé, accessible en consultation et en modif (sans restriction)
271         // interet par rapport à un champ public ? 
272         // --> pouvoir en changer la définition sans toucher à l'API
273
274         void SetLength(guint32 l){ LgrElem = l;         };
275         guint32 GetLength(void)  { return LgrElem;      };
276         
277         // Question : SetLength est public 
278         // (sinon, on ne pourrait pas l'appeler dans ElValSet)
279         // alors que *personne* ne devrait s'en servir !
280         // c'est *forcément* la lgr de la string 'value', non?
281
282         void SetValue(string val){ value = val;         };
283         string  GetValue(void)   { return value;        };
284
285         void SetOffset(size_t of){ Offset = of;         };
286         size_t  GetOffset(void)  { return Offset;       };
287         // Question : SetOffset est public ...
288         // Quel utilisateur serait ammené à modifier l'Offset ?
289 };
290
291
292 //
293 // ---------------------------------------------------- ElValSet
294 //
295 //      ... un ensemble d'Elements Dicom 
296 //      ... le résultat de l'analyse d'une entete d'image, par exemple
297
298 ////////////////////////////////////////////////////////////////////////////
299 // Container for a set of successfully parsed ElValues.
300 typedef map<TagKey, ElValue*> TagElValueHT;
301 typedef map<string, ElValue*> TagElValueNameHT;
302
303 class GDCM_EXPORT ElValSet {
304                 // We need both accesses with a TagKey and the Dictentry.Name
305
306         TagElValueHT tagHt;
307         TagElValueNameHT NameHt;
308 public: 
309         void Add(ElValue*);             
310         void Print(ostream &);
311         void PrintByName(ostream &);
312         int  Write(FILE *fp);
313         ElValue* GetElementByNumber(guint32 group, guint32 element);
314         ElValue* GetElementByName  (string);
315         string   GetElValueByNumber(guint32 group, guint32 element);
316         string   GetElValueByName  (string);
317         
318         TagElValueHT & GetTagHt(void);  
319         
320         int SetElValueByNumber(string content, guint32 group, guint32 element);
321         int SetElValueByName(string content, string TagName);
322 };
323
324
325 //
326 // ---------------------------------------------------- gdcmHeader
327 //
328 //      C'est le Dicom Header d'une image donnée
329 //      (tous les elements Dicom qui la composent
330 //      + des info 'de service')
331 //
332
333 ////////////////////////////////////////////////////////////////////////////
334 // The typical usage of instances of class gdcmHeader is to classify a set of
335 // dicom files according to header information e.g. to create a file hierarchy
336 // reflecting the Patient/Study/Serie informations, or extracting a given
337 // SerieId. Accesing the content (image[s] or volume[s]) is beyond the
338 // functionality of this class and belong to gdmcFile (see below).
339 // Notes:
340 // * the various entries of the explicit value representation (VR) shall
341 //   be managed within a dictionary which is shared by all gdcmHeader instances
342 // * the gdcmHeader::Set*Tag* family members cannot be defined as protected
343 //   (Swig limitations for as Has_a dependency between gdcmFile and gdcmHeader)
344  
345
346 typedef string VRKey;
347 typedef string VRAtr;
348 typedef map<VRKey, VRAtr> VRHT;    // Value Representation Hash Table
349
350
351 class GDCM_EXPORT gdcmHeader {
352         void SkipBytes(guint32);
353 private:
354         static VRHT *dicom_vr;
355         // Dictionaries of data elements:
356
357         static gdcmDictSet* Dicts;  // global dictionary container
358         gdcmDict* RefPubDict;       // public dictionary
359         gdcmDict* RefShaDict;       // shadow dictionary (optional)
360         // Parsed element values:
361         ElValSet PubElVals;         // parsed with Public Dictionary
362         ElValSet ShaElVals;         // parsed with Shadow Dictionary
363         string filename;            // refering underlying file
364         FILE * fp;
365         // The tag Image Location (0028,0200) - containing the address of
366         // the pixels - is not allways present. Then we store this information
367         // il etait facultatif en ACR-NEMA, il n'existe plus en DICOM 3
368         // FIXME
369         
370         // Question :
371         // Qu'y a-t-il a corriger ?
372         //
373         // outside of the elements:
374         
375         guint16 grPixel;
376         guint16 numPixel;
377         // Ne faudrait-il pas une indication sur la presence ou non
378         // du 'groupe des pixels' dans l'entete?
379         // (voir pb du DICOMDIR)
380         
381         // Swap code (little, big, bad-big, bad-little endian): this code is not fixed
382         // during parsing.FIXME sw should be an enum e.g.
383         //enum EndianType {
384                 //LittleEndian, 
385                 //BadLittleEndian,
386                 //BigEndian, 
387                 //BadBigEndian};
388         int sw;
389
390         // Only the elements whose size is below this bound will be loaded.
391         // By default, this upper bound is limited to 1024 (which looks reasonable
392         // when one considers the definition of the various VR contents).
393         guint32 MaxSizeLoadElementValue;
394
395         guint16 ReadInt16(void);
396         guint32 ReadInt32(void);
397         guint16 SwapShort(guint16);
398         guint32 SwapLong(guint32);
399         void Initialise(void);
400         void CheckSwap(void);
401         void FindLength(ElValue *);
402         guint32 FindLengthOB(void);
403         void FindVR(ElValue *);
404         void LoadElementValue(ElValue *);
405         void LoadElementValueSafe(ElValue *);
406         void SkipElementValue(ElValue *);
407         void InitVRDict(void);
408         void SwitchSwapToBigEndian(void);
409         void FixFoundLength(ElValue*, guint32);
410         bool IsAnInteger(ElValue *);
411         
412         bool IsImplicitVRLittleEndianTransferSyntax(void);
413         bool IsExplicitVRLittleEndianTransferSyntax(void);
414         bool IsDeflatedExplicitVRLittleEndianTransferSyntax(void);
415         bool IsExplicitVRBigEndianTransferSyntax(void);
416         bool IsJPEGBaseLineProcess1TransferSyntax(void);
417         bool IsJPEGExtendedProcess2_4TransferSyntax(void);      
418         bool IsJPEGExtendedProcess3_5TransferSyntax(void);
419         bool IsJPEGSpectralSelectionProcess6_8TransferSyntax(void);     
420 //
421 // Euhhhhhhh
422 // Il y en a encore DIX-SEPT, comme ça.
423 // Il faudrait trouver qq chose + rusé ...
424 //      
425                 
426         void SetMaxSizeLoadElementValue(long);
427         ElValue       * ReadNextElement(void);
428         gdcmDictEntry * IsInDicts(guint32, guint32);
429 protected:
430         enum FileType {
431                 Unknown = 0,
432                 TrueDicom,
433                 ExplicitVR,
434                 ImplicitVR,
435                 ACR,
436                 ACR_LIBIDO};  // CLEANME
437         FileType filetype;
438         int write(ostream&);   
439         int anonymize(ostream&);  // FIXME : anonymize should be a friend ?
440 public:
441         void LoadElements(void);
442         virtual void ParseHeader(void);
443         gdcmHeader(const char* filename);
444         virtual ~gdcmHeader();
445         
446         size_t GetPixelOffset(void);
447         void   GetPixels(size_t, void *);
448         int    GetSwapCode(void) { return sw; }
449
450         // TODO Swig int SetPubDict(string filename);
451         // When some proprietary shadow groups are disclosed, we can set up
452         // an additional specific dictionary to access extra information.
453         // TODO Swig int SetShaDict(string filename);
454
455         // Retrieve all potentially available tag [tag = (group, element)] names
456         // from the standard (or public) dictionary. Typical usage : enable the
457         // user of a GUI based interface to select his favorite fields for sorting
458         // or selecting.
459         list<string> * GetPubTagNames(void);
460         map<string, list<string> > * GetPubTagNamesByCategory(void);
461         // Get the element values themselves:
462         
463         string GetPubElValByName(string TagName);
464         string GetPubElValByNumber(guint16 group, guint16 element);
465
466         // Getting the element value representation (VR) might be needed by caller
467         // to convert the string typed content to caller's native type 
468         // (think of C/C++ vs Python).
469
470         string GetPubElValRepByName(string TagName);
471         string GetPubElValRepByNumber(guint16 group, guint16 element);
472
473         TagElValueHT & GetPubElVal(void) { return PubElVals.GetTagHt(); };
474         void   PrintPubElVal(ostream & os = cout);
475         void   PrintPubDict(ostream &);
476           
477         // Same thing with the shadow :
478         // TODO Swig string* GetShaTagNames(); 
479         string GetShaElValByName(string TagName);
480         string GetShaElValByNumber(guint16 group, guint16 element);
481         string GetShaElValRepByName(string TagName);
482         string GetShaElValRepByNumber(guint16 group, guint16 element);
483
484         // Wrappers of the above (public is privileged over shadow) to avoid
485         // bugging the caller with knowing if ElVal is from the public or shadow
486         // dictionary.
487         string GetElValByName(string TagName);
488         string GetElValByNumber(guint16 group, guint16 element);
489         string GetElValRepByName(string TagName);
490         string GetElValRepByNumber(guint16 group, guint16 element);
491
492         int SetPubElValByName(string content, string TagName);
493         int SetPubElValByNumber(string content, guint16 group, guint16 element);
494         int SetShaElValByName(string content, string ShadowTagName);
495         int SetShaElValByNumber(string content, guint16 group, guint16 element);
496
497         ElValSet GetPubElVals() { return(PubElVals); }
498 };
499
500 //
501 // ---------------------------------------------------- gdcmFile
502 //
503 //      un fichier EST_UNE entete, ou A_UNE entete ?
504 // 
505 //      On dit 'EST_UNE' ...
506
507
508 ////////////////////////////////////////////////////////////////////////////
509 // In addition to Dicom header exploration, this class is designed
510 // for accessing the image/volume content. One can also use it to
511 // write Dicom files.
512 ////// QUESTION: this looks still like an open question whether the
513 //////           relationship between a gdcmFile and gdcmHeader is of
514 //////           type IS_A or HAS_A !
515
516 class GDCM_EXPORT gdcmFile: public gdcmHeader
517 {
518 private:
519         // QUESTION :
520         // Data pointe sur quoi?
521         // sur les Pixels lus?
522         // --> j'ajoute un champ public : Pixels
523         // (il faudra que l'utilisateur puisse modifier les pixels ?)
524         
525         void* Data;
526         int Parsed;          // weather allready parsed
527         string OrigFileName; // To avoid file overwrite
528 public:
529         // je ne suis pas sur d'avoir compris *où* il serait légitime de ranger ca.
530         // on pourra tjs le deplacer, et mettre des accesseurs
531         void * Pixels;
532         size_t lgrTotale;
533         
534         // Constructor dedicated to writing a new DICOMV3 part10 compliant
535         // file (see SetFileName, SetDcmTag and Write)
536         // TODO Swig gdcmFile();
537         // Opens (in read only and when possible) an existing file and checks
538         // for DICOM compliance. Returns NULL on failure.
539         // Note: the in-memory representation of all available tags found in
540         //    the DICOM header is post-poned to first header information access.
541         //    This avoid a double parsing of public part of the header when
542         //    one sets an a posteriori shadow dictionary (efficiency can be
543         //    seen as a side effect).
544         
545         gdcmFile(string & filename);
546         
547         // For promotion (performs a deepcopy of pointed header object)
548         // TODO Swig gdcmFile(gdcmHeader* header);
549         // TODO Swig ~gdcmFile();
550
551         // On writing purposes. When instance was created through
552         // gdcmFile(string filename) then the filename argument MUST be different
553         // from the constructor's one (no overwriting allowed).
554         // TODO Swig int SetFileName(string filename);
555
556         // Allocates necessary memory, copies the data (image[s]/volume[s]) to
557         // newly allocated zone and return a pointer to it:
558         
559          void * GetImageData();
560         
561         // Returns size (in bytes) of required memory to contain data
562         // represented in this file.
563         
564         size_t GetImageDataSize();
565         
566         // Copies (at most MaxSize bytes) of data to caller's memory space.
567         // Returns an error code on failure (if MaxSize is not big enough)
568         
569         int PutImageDataHere(void* destination, size_t MaxSize );
570         
571         // Question :
572         //
573         //      GetImageData et PutImageDataHere
574         // Get et Put pour 2 fonctions qui font presque la meme chose :-(
575         //
576         
577         // Allocates ExpectedSize bytes of memory at this->Data and copies the
578         // pointed data to it.
579         
580         // Question :
581         // Pourquoi dupliquer les pixels, alors qu'on les a deja en mémoire,
582         // et que Data (dans le gdcmHeader) est un pointeur ?
583         
584         // TODO Swig int SetImageData(void * Data, size_t ExpectedSize);
585         
586         // Push to disk.
587         // A NE PAS OUBLIER : que fait-on en cas de Transfert Syntax (dans l'entete)
588         // incohérente avec l'ordre des octets en mémoire  
589         // TODO Swig int Write();
590         
591         // Ecrit sur disque les pixels d'UNE image
592         // Aucun test n'est fait sur l'"Endiannerie" du processeur.
593         // Ca sera à l'utilisateur d'appeler son Reader correctement
594                 
595         int WriteRawData (string nomFichier);
596         int WriteDcm (string nomFichier);
597 };
598
599 //
600 // ---------------------------------------------------- gdcmSerie
601 //
602 //      une serie EST_UN fichier ????
603 //
604 //
605
606 //class gdcmSerie : gdcmFile;
607
608 //
609 // ---------------------------------------------------- gdcmMultiFrame
610 //
611 //      un fichierMultiFrame EST_UN fichier 
612 //
613 //
614
615 //class gdcmMultiFrame : gdcmFile;
616
617