CppWAMP
C++11 client library for the WAMP protocol
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
integersequence.hpp
1 /*------------------------------------------------------------------------------
2  Copyright Butterfly Energy Systems 2014-2015.
3  Distributed under the Boost Software License, Version 1.0.
4  http://www.boost.org/LICENSE_1_0.txt
5 ------------------------------------------------------------------------------*/
6 
7 #ifndef CPPWAMP_INTEGERSEQUENCE_HPP
8 #define CPPWAMP_INTEGERSEQUENCE_HPP
9 
10 #ifndef CPPWAMP_FOR_DOXYGEN // GenIntegerSequence confuses the Doxygen parser
11 
12 namespace wamp
13 {
14 
15 namespace internal
16 {
17 
18 // Represents a compile-time sequence of integers.
19 template<int ...> struct IntegerSequence { };
20 
21 
22 // Generates a compile-time sequence of integers.
23 template<int N, int ...S>
24 struct GenIntegerSequence : GenIntegerSequence<N-1, N-1, S...> { };
25 
26 template<int ...S>
27 struct GenIntegerSequence<0, S...>
28 {
29  using type = IntegerSequence<S...>;
30 };
31 
32 } // namespace internal
33 
34 } // namespace wamp
35 
36 #endif // CPPWAMP_FOR_DOXYGEN
37 
38 #endif // CPPWAMP_INTEGERSEQUENCE_HPP
wamp
Definition: anyhandler.hpp:36