]> Creatis software - gdcm.git/blobdiff - Testing/TestHash.cxx
* Some more cleanup/enhancement in gdcmPython/CMakeLists.txt getting close
[gdcm.git] / Testing / TestHash.cxx
index 56cbdfcdfe16d6281bc92e157db99d6cc2188406..463352494bcdea2309c84076aaa579c3d9b4d89c 100644 (file)
@@ -1,24 +1,38 @@
 #include <map>
 #include <string>
 #include <iostream>
+#include <stdio.h>
 
-int main()
-{
-  typedef map<string, char*> dict;
+int TestHash( int, char * [] ) {
+
+  typedef std::map<std::string, char*> dict;
   
-  dict tb1;
-  dict::iterator im = tb1.find("00380010");
-  tb1["00100010"] = "Patient Name";
-  tb1["7fe00010"] = "Pixel Data";
-  tb1["50000010"] = "Number of points";
-  tb1["00380010"] = "Admission ID";
+   dict tb1;
+   dict::iterator im = tb1.find("00380010");
+   tb1["00100010"] = "Patient Name";
+   tb1["7fe00010"] = "Pixel Data";
+   tb1["50000010"] = "Number of points";
+   tb1["00380010"] = "Admission ID";
+
+   std::cout << "Traversal of dictionary (note the proper ordering on key)." << std::endl;
+   for ( im = tb1.begin(); im != tb1.end(); ++im )
+      std::cout << "   \"" << im->first << "\" = " << im->second << std::endl;
+   std::cout << "End of dictionary." << std::endl;
 
-       cout << "Traversal of dictionary (note the proper ordering on key)." << endl;
-       for ( dict::iterator im = tb1.begin(); im != tb1.end(); ++im )
-               cout << "   \"" << im->first << "\" = " << im->second << endl;
-       cout << "End of dictionary." << endl;
+   std::cout << "Find request on key 00380010" << std::endl;
+   im = tb1.find("00380010");
+   std::cout << "   \"" << im->first << "\" = " << im->second << std::endl;
+       
+   int i = 0x0010;
+   std::cout.setf(std::ios::hex);
+   std::cout << i << std::endl;
+   std::cout.setf(std::ios::dec);
+   std::cout << i << std::endl;        
+       
+       // Voir :
+       //http://www.developer.com/net/cplus/article.php/10919_2119781_3
+       //
+       // dommage que ca ne marche pas ...
 
-       cout << "Find request on key 00380010" << endl;
-       im = tb1.find("00380010");
-       cout << "   \"" << im->first << "\" = " << im->second << endl;
+  return 0;
 }