]> Creatis software - gdcm.git/blobdiff - src/gdcmTS.h
* src/*.h : add comments
[gdcm.git] / src / gdcmTS.h
index 0aa14c3d43a5479c78856ef28b14893e344dedd3..fde45c6b33b4c5ff7c7c4a7e7b4c2fb733e8085b 100644 (file)
@@ -3,16 +3,18 @@
 #ifndef GDCMTS_H
 #define GDCMTS_H
 
+#include "gdcmCommon.h"
 #include <map>
 #include <string>
-#include "gdcmCommon.h"
 
 typedef std::string TSKey;
 typedef std::string TSAtr;
 typedef std::map<TSKey, TSAtr> TSHT;    // Transfert Syntax Hash Table
 
-/// Container for dicom Transfert Syntax Hash Table
-/// \note   This is a singleton
+/*
+ * Container for dicom Transfert Syntax Hash Table
+ * \note   This is a singleton
+ */
 class GDCM_EXPORT gdcmTS {
 private:
    TSHT ts;    
@@ -21,7 +23,7 @@ public:
    gdcmTS(void);
    ~gdcmTS();
    int Count(TSKey key);
-   string GetValue(TSKey key);
+   std::string GetValue(TSKey key);
 };
 
 #endif