1 |
|
---|
2 | #include <boost/mpl/vector.hpp>
|
---|
3 | #include <boost/fusion/support.hpp>
|
---|
4 |
|
---|
5 | typedef boost::fusion::traits::deduce_sequence <
|
---|
6 |
|
---|
7 | boost::mpl::vector<int, char>
|
---|
8 |
|
---|
9 | >::type seq1_t;
|
---|
10 |
|
---|
11 |
|
---|
12 | typedef boost::fusion::traits::deduce_sequence <
|
---|
13 |
|
---|
14 | boost::fusion::vector<int, char>
|
---|
15 |
|
---|
16 | >::type seq2_t;
|
---|