]> git.lyx.org Git - lyx.git/blob - boost/boost/utility/typed_in_place_factory.hpp
boost: update to version 1.40
[lyx.git] / boost / boost / utility / typed_in_place_factory.hpp
1 // Copyright (C) 2003, Fernando Luis Cacciola Carballal.\r
2 // Copyright (C) 2007, Tobias Schwinger.\r
3 //\r
4 // Use, modification, and distribution is subject to the Boost Software\r
5 // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at\r
6 // http://www.boost.org/LICENSE_1_0.txt)\r
7 //\r
8 // See http://www.boost.org/lib/optional for documentation.\r
9 //\r
10 // You are welcome to contact the author at:\r
11 //  fernando_cacciola@hotmail.com\r
12 //\r
13 #ifndef BOOST_UTILITY_TYPED_INPLACE_FACTORY_04APR2007_HPP\r
14 #ifndef BOOST_PP_IS_ITERATING\r
15 \r
16 #include <boost/utility/detail/in_place_factory_prefix.hpp>\r
17 \r
18 namespace boost {\r
19 \r
20 class typed_in_place_factory_base {} ;\r
21 \r
22 #define  BOOST_PP_ITERATION_LIMITS (0, BOOST_MAX_INPLACE_FACTORY_ARITY)\r
23 #define  BOOST_PP_FILENAME_1 <boost/utility/typed_in_place_factory.hpp>\r
24 #include BOOST_PP_ITERATE()\r
25 \r
26 } // namespace boost\r
27 \r
28 #include <boost/utility/detail/in_place_factory_suffix.hpp>\r
29 \r
30 #define BOOST_UTILITY_TYPED_INPLACE_FACTORY_04APR2007_HPP\r
31 #else \r
32 #define N BOOST_PP_ITERATION()\r
33 \r
34 template< class T BOOST_PP_ENUM_TRAILING_PARAMS(N,class A) >\r
35 class BOOST_PP_CAT(typed_in_place_factory,N) \r
36   : \r
37   public typed_in_place_factory_base\r
38 {\r
39 public:\r
40 \r
41   typedef T value_type;\r
42 \r
43   explicit BOOST_PP_CAT(typed_in_place_factory,N) \r
44       ( BOOST_PP_ENUM_BINARY_PARAMS(N, A, const& a) )\r
45 #if N > 0\r
46     : BOOST_PP_ENUM(N, BOOST_DEFINE_INPLACE_FACTORY_CLASS_MEMBER_INIT, _)\r
47 #endif\r
48   {}\r
49 \r
50   void* apply (void* address) const\r
51   {\r
52     return new(address) T( BOOST_PP_ENUM_PARAMS(N, m_a) );\r
53   }\r
54 \r
55   void* apply (void* address, std::size_t n) const\r
56   {\r
57     for(void* next = address = this->apply(address); !! --n;)\r
58       this->apply(next = static_cast<char *>(next) + sizeof(T));\r
59     return address; \r
60   }\r
61 \r
62   BOOST_PP_REPEAT(N, BOOST_DEFINE_INPLACE_FACTORY_CLASS_MEMBER_DECL, _)\r
63 };\r
64 \r
65 template< class T BOOST_PP_ENUM_TRAILING_PARAMS(N, class A) >\r
66 inline BOOST_PP_CAT(typed_in_place_factory,N)<\r
67     T BOOST_PP_ENUM_TRAILING_PARAMS(N, A) >\r
68 in_place( BOOST_PP_ENUM_BINARY_PARAMS(N, A, const& a) )\r
69 {\r
70   return BOOST_PP_CAT(typed_in_place_factory,N)< \r
71       T BOOST_PP_ENUM_TRAILING_PARAMS(N, A) >( BOOST_PP_ENUM_PARAMS(N, a) );\r
72 }\r
73 \r
74 #undef N\r
75 #endif\r
76 #endif\r
77 \r