framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
stl_pair.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 <utility>
18 
20 
21 namespace framework
22 {
23  namespace serializable
24  {
28  template <typename T1, typename T2>
29  using stl_pair = tuple_container <
30  pack_container <T1, T2>,
31  std::pair <type_extractor <T1>, type_extractor <T2>>>;
32  }
33 }