]> Creatis software - gdcm.git/blob - src/gdcmVR.h
f3fca668413ae4f1569a2f28dea52421791ed4de
[gdcm.git] / src / gdcmVR.h
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmVR.h,v $
5   Language:  C++
6   Date:      $Date: 2005/10/18 12:58:29 $
7   Version:   $Revision: 1.21 $
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 GDCMVR_H
20 #define GDCMVR_H
21
22 #include "gdcmCommon.h"
23 #include "gdcmVRKey.h"
24
25 #include <map>
26 #include <string>
27 #include <iostream>
28
29 namespace gdcm 
30 {
31
32 //-----------------------------------------------------------------------------
33 typedef std::string VRAtr;
34 /// Value Representation Hash Table
35 typedef std::map<VRKey, VRAtr> VRHT;
36
37 //-----------------------------------------------------------------------------
38 /**
39  * \brief Container for dicom Value Representation Hash Table
40  * \note   This is a singleton
41  */
42 class GDCM_EXPORT VR 
43 {
44 public:
45    VR(void);
46    ~VR();
47
48    void Print(std::ostream &os = std::cout);
49
50    /// \brief   Get the count for an element
51    int Count(VRKey const &key) { return vr.count(key); };
52
53    bool IsVROfBinaryRepresentable(VRKey const &tested);
54    bool IsVROfStringRepresentable(VRKey const &tested);
55
56    /// \brief   Simple predicate that checks whether the given argument
57    ///          corresponds to the Value Representation of a \ref SeqEntry
58    bool IsVROfSequence(VRKey const &tested) { return tested == "SQ"; }
59
60    bool IsValidVR(VRKey const &key) { return vr.find(key) != vr.end(); }
61
62    unsigned short GetAtomicElementLength(VRKey const &vr);
63
64 private:
65    VRHT vr;
66 };
67 } // end namespace gdcm
68
69 //-----------------------------------------------------------------------------
70 #endif