1234567891011121314151617181920212223242526272829303132 |
- #ifndef BOOST_CSBL_TUPLE_HPP
- #define BOOST_CSBL_TUPLE_HPP
- #include <tuple>
- namespace boost
- {
- namespace csbl
- {
-
- using ::std::tuple;
- using ::std::get;
- using ::std::make_tuple;
- using ::std::tuple_size;
-
-
-
-
-
-
- }
- }
- #endif
|