// Copyright (C) 2013-2015 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. #if !defined (COMMONAPI_INTERNAL_COMPILATION) #error "Only can be included directly, this file may disappear or change contents." #endif #ifndef COMMONAPI_DBUS_DBUS_HELPER_HPP_ #define COMMONAPI_DBUS_DBUS_HELPER_HPP_ #include #include namespace CommonAPI { namespace DBus { template struct index_sequence {}; template struct make_sequence : make_sequence {}; template struct make_sequence<0, S_...> { typedef index_sequence type; }; template struct make_sequence_range : make_sequence_range {}; template struct make_sequence_range<0, Offset_, S_...> { typedef index_sequence type; }; template struct is_std_vector { static const bool value = false; }; template struct is_std_vector > { static const bool value = true; }; template struct is_std_unordered_map { static const bool value = false; }; template struct is_std_unordered_map> { static const bool value = true; }; } // namespace DBus } // namespace CommonAPI #endif // COMMONAPI_DBUS_DBUS_HELPER_HPP_