Chris@16
|
1 /*
|
Chris@101
|
2 * Copyright Andrey Semashev 2007 - 2015.
|
Chris@16
|
3 * Distributed under the Boost Software License, Version 1.0.
|
Chris@16
|
4 * (See accompanying file LICENSE_1_0.txt or copy at
|
Chris@16
|
5 * http://www.boost.org/LICENSE_1_0.txt)
|
Chris@16
|
6 */
|
Chris@16
|
7 /*!
|
Chris@16
|
8 * \file save_result.hpp
|
Chris@16
|
9 * \author Andrey Semashev
|
Chris@16
|
10 * \date 19.01.2013
|
Chris@16
|
11 *
|
Chris@16
|
12 * This header contains function object adapter that saves the result of the adopted function to an external variable.
|
Chris@16
|
13 */
|
Chris@16
|
14
|
Chris@16
|
15 #ifndef BOOST_LOG_UTILITY_FUNCTIONAL_SAVE_RESULT_HPP_INCLUDED_
|
Chris@16
|
16 #define BOOST_LOG_UTILITY_FUNCTIONAL_SAVE_RESULT_HPP_INCLUDED_
|
Chris@16
|
17
|
Chris@16
|
18 #include <boost/log/detail/config.hpp>
|
Chris@16
|
19 #include <boost/log/detail/header.hpp>
|
Chris@16
|
20
|
Chris@16
|
21 #ifdef BOOST_HAS_PRAGMA_ONCE
|
Chris@16
|
22 #pragma once
|
Chris@16
|
23 #endif
|
Chris@16
|
24
|
Chris@16
|
25 namespace boost {
|
Chris@16
|
26
|
Chris@16
|
27 BOOST_LOG_OPEN_NAMESPACE
|
Chris@16
|
28
|
Chris@16
|
29 //! Function object wrapper for saving the adopted function object result
|
Chris@16
|
30 template< typename FunT, typename AssigneeT >
|
Chris@16
|
31 struct save_result_wrapper
|
Chris@16
|
32 {
|
Chris@16
|
33 typedef void result_type;
|
Chris@16
|
34
|
Chris@16
|
35 save_result_wrapper(FunT fun, AssigneeT& assignee) : m_fun(fun), m_assignee(assignee) {}
|
Chris@16
|
36
|
Chris@16
|
37 template< typename ArgT >
|
Chris@16
|
38 result_type operator() (ArgT const& arg) const
|
Chris@16
|
39 {
|
Chris@16
|
40 m_assignee = m_fun(arg);
|
Chris@16
|
41 }
|
Chris@16
|
42
|
Chris@16
|
43 private:
|
Chris@16
|
44 FunT m_fun;
|
Chris@16
|
45 AssigneeT& m_assignee;
|
Chris@16
|
46 };
|
Chris@16
|
47
|
Chris@16
|
48 template< typename FunT, typename AssigneeT >
|
Chris@16
|
49 BOOST_FORCEINLINE save_result_wrapper< FunT, AssigneeT > save_result(FunT const& fun, AssigneeT& assignee)
|
Chris@16
|
50 {
|
Chris@16
|
51 return save_result_wrapper< FunT, AssigneeT >(fun, assignee);
|
Chris@16
|
52 }
|
Chris@16
|
53
|
Chris@16
|
54 BOOST_LOG_CLOSE_NAMESPACE // namespace log
|
Chris@16
|
55
|
Chris@16
|
56 } // namespace boost
|
Chris@16
|
57
|
Chris@16
|
58 #include <boost/log/detail/footer.hpp>
|
Chris@16
|
59
|
Chris@16
|
60 #endif // BOOST_LOG_UTILITY_FUNCTIONAL_SAVE_RESULT_HPP_INCLUDED_
|