summaryrefslogtreecommitdiff
path: root/src/CommonAPI/DBus/DBusHelper.h
blob: bcf80d15e1d5338a4d5d7d1a22ba1c8a6792633f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/* Copyright (C) 2013 BMW Group
 * Author: Manfred Bathelt (manfred.bathelt@bmw.de)
 * Author: Juergen Gehring (juergen.gehring@bmw.de)
 * 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 <CommonAPI/CommonAPI.h> can be included directly, this file may disappear or change contents."
#endif

#ifndef COMMONAPI_DBUS_DBUS_HELPER_H_
#define COMMONAPI_DBUS_DBUS_HELPER_H_

namespace CommonAPI {
namespace DBus {

template <int ...>
struct index_sequence {};


template <int N, int ...S>
struct make_sequence : make_sequence<N-1, N-1, S...> {};

template <int ...S>
struct make_sequence<0, S...> {
    typedef index_sequence<S...> type;
};


template <int N, int _Offset, int ...S>
struct make_sequence_range : make_sequence_range<N-1, _Offset, N-1+_Offset, S...> {};

template <int _Offset, int ...S>
struct make_sequence_range<0, _Offset, S...> {
    typedef index_sequence<S...> type;
};

} // namespace DBus
} // namespace CommonAPI

#endif // COMMONAPI_DBUS_DBUS_HELPER_H_