|
using | sdbus::method_callback = std::function< void(MethodCall msg)> |
|
using | sdbus::async_reply_handler = std::function< void(MethodReply &reply, const Error *error)> |
|
using | sdbus::signal_handler = std::function< void(Signal &signal)> |
|
using | sdbus::property_set_callback = std::function< void(PropertySetCall &msg)> |
|
using | sdbus::property_get_callback = std::function< void(PropertyGetReply &reply)> |
|
template<typename _FunctionType > |
using | sdbus::function_arguments_t = typename function_traits< _FunctionType >::arguments_type |
|
template<typename _FunctionType , size_t _Idx> |
using | sdbus::function_argument_t = typename function_traits< _FunctionType >::template arg_t< _Idx > |
|
template<typename _FunctionType > |
using | sdbus::function_result_t = typename function_traits< _FunctionType >::result_type |
|
template<typename _Function > |
using | sdbus::tuple_of_function_input_arg_types_t = typename tuple_of_function_input_arg_types< _Function >::type |
|
template<typename _Function > |
using | sdbus::tuple_of_function_output_arg_types_t = typename tuple_of_function_output_arg_types< _Function >::type |
|
|
template<class _Function , class _Tuple , typename... _Args, std::size_t... _I> |
constexpr decltype(auto) | sdbus::detail::apply_impl (_Function &&f, Result< _Args... > &&r, _Tuple &&t, std::index_sequence< _I... >) |
|
template<class _Function , class _Tuple , std::size_t... _I> |
constexpr decltype(auto) | sdbus::detail::apply_impl (_Function &&f, const Error *e, _Tuple &&t, std::index_sequence< _I... >) |
|
template<class _Function , class _Tuple , std::size_t... _I> |
constexpr decltype(auto) | sdbus::detail::apply_impl (_Function &&f, _Tuple &&t, std::index_sequence< _I... >) |
|
template<class _Function , class _Tuple > |
constexpr decltype(auto) | sdbus::apply (_Function &&f, _Tuple &&t) |
|
template<class _Function , class _Tuple , typename... _Args> |
constexpr decltype(auto) | sdbus::apply (_Function &&f, Result< _Args... > &&r, _Tuple &&t) |
|
template<class _Function , class _Tuple > |
constexpr decltype(auto) | sdbus::apply (_Function &&f, const Error *e, _Tuple &&t) |
|
(C) 2016 - 2017 KISTLER INSTRUMENTE AG, Winterthur, Switzerland (C) 2016 - 2019 Stanislav Angelovic angel.nosp@m.ovic.nosp@m..s@gm.nosp@m.ail..nosp@m.com
Created on: Nov 9, 2016 Project: sdbus-c++ Description: High-level D-Bus IPC C++ library based on sd-bus
This file is part of sdbus-c++.
sdbus-c++ is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 2.1 of the License, or (at your option) any later version.
sdbus-c++ is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along with sdbus-c++. If not, see http://www.gnu.org/licenses/.