xmscore  1.0
hash.h
Go to the documentation of this file.
1 #pragma once
2 //------------------------------------------------------------------------------
8 //------------------------------------------------------------------------------
9 
10 #include <hash_map>
11 
12 namespace xms
13 {
14 //----- Old types --------------------------------------------------------------
16 typedef stdext::hash_map<std::string, std::string> HASH_S_S;
17 typedef stdext::hash_map<int, std::string> HASH_I_S;
18 
19 //----- New types --------------------------------------------------------------
20 
21 typedef stdext::hash_map<std::string, std::string> HashStrStr;
22 typedef stdext::hash_map<int, std::string> HashIntStr;
23 
24 } // namespace xms
stdext::hash_map< int, std::string > HashIntStr
short rename
Definition: hash.h:22
stdext::hash_map< std::string, std::string > HashStrStr
short rename
Definition: hash.h:21
stdext::hash_map< std::string, std::string > HASH_S_S
short rename
Definition: hash.h:16
stdext::hash_map< int, std::string > HASH_I_S
short rename
Definition: hash.h:17