]> Creatis software - gdcm.git/blobdiff - src/gdcmVR.h
* Some classes inherit now from gdcm::RefCounter
[gdcm.git] / src / gdcmVR.h
index 399884c28e65ad3b045c1beb30c6dc747689b51a..7a2af7b5b5c5cdfafd8d35b948222ff337233d37 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmVR.h,v $
   Language:  C++
-  Date:      $Date: 2005/10/23 14:56:27 $
-  Version:   $Revision: 1.24 $
+  Date:      $Date: 2005/10/25 14:52:35 $
+  Version:   $Revision: 1.25 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -19,7 +19,7 @@
 #ifndef GDCMVR_H
 #define GDCMVR_H
 
-#include "gdcmCommon.h"
+#include "gdcmRefCounter.h"
 #include "gdcmVRKey.h"
 
 #include <map>
@@ -39,11 +39,12 @@ typedef std::map<VRKey, VRAtr> VRHT;
  * \brief Container for dicom Value Representation Hash Table
  * \note   This is a singleton
  */
-class GDCM_EXPORT VR 
+class GDCM_EXPORT VR : public RefCounter
 {
+   gdcmTypeMacro(VR);
+
 public:
-   VR(void);
-   ~VR();
+   static VR *New() {return new VR();}
 
    void Print(std::ostream &os = std::cout);
 
@@ -67,6 +68,10 @@ public:
 
    unsigned short GetAtomicElementLength(VRKey const &tested);
 
+protected:
+   VR();
+   ~VR();
+
 private:
    VRHT vr;
 };