]> Creatis software - gdcm.git/blobdiff - src/gdcmTS.cxx
Coding Style + Doxygenation
[gdcm.git] / src / gdcmTS.cxx
index 26c672df9f9107b02e145d1c724742415cd56218..4d335126a6e9f3bcdc1285e92ade05b8a56b2e52 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmTS.cxx,v $
   Language:  C++
-  Date:      $Date: 2004/11/03 18:08:56 $
-  Version:   $Revision: 1.28 $
+  Date:      $Date: 2005/01/06 20:03:28 $
+  Version:   $Revision: 1.30 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
 #include <string>
 #include <iostream>
 
+// TODO
+// a lot of troubles expected with TS : 1.2.840.113619.5.2
+// Implicit VR - Big Endian
+// see : http://www.gemedicalsystemseurope.com/euen/it_solutions/pdf/lsqxi_rev2.pdf
+// 
+
 namespace gdcm 
 {
-void FillDefaultTSDict(TSHT & ts);
+void FillDefaultTSDict(TSHT &ts);
 //-----------------------------------------------------------------------------
 // Constructor / Destructor
 TS::TS() 
@@ -85,12 +91,12 @@ void TS::Print(std::ostream &os)
 
 //-----------------------------------------------------------------------------
 // Public
-int TS::Count(TSKey const & key) 
+int TS::Count(TSKey const &key) 
 {
    return TsMap.count(key);
 }
 
-TSAtr const & TS::GetValue(TSKey const & key) 
+TSAtr const & TS::GetValue(TSKey const &key) 
 {
    TSHT::const_iterator it = TsMap.find(key);
    if (it == TsMap.end())