framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
stl_map.hpp
Go to the documentation of this file.
1 // Copyright (C) 2012 iwg molw5
2 // For conditions of distribution and use, see copyright notice in COPYING
3 
13 #pragma once
14 
15 #pragma once
16 
17 #include <map>
18 
21 
22 namespace framework
23 {
24  namespace serializable
25  {
29  template <typename Size, typename T1, typename T2>
30  using stl_map = variable_container <
31  Size,
32  stl_pair <T1, T2>,
33  std::map <type_extractor <T1>, type_extractor <T2>>>;
34 
38  template <typename Size, typename T1, typename T2>
40  Size,
42  std::multimap <type_extractor <T1>, type_extractor <T2>>>;
43  }
44 }