12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #ifndef BOOST_CSBL_TUPLE_HPP
- #define BOOST_CSBL_TUPLE_HPP
- #include <boost/config.hpp>
- #if defined BOOST_THREAD_USES_BOOST_TUPLE || defined BOOST_NO_CXX11_HDR_TUPLE || defined BOOST_NO_CXX11_RVALUE_REFERENCES
- #include <boost/tuple/tuple.hpp>
- #ifndef BOOST_THREAD_USES_BOOST_TUPLE
- #define BOOST_THREAD_USES_BOOST_TUPLE
- #endif
- #else
- #include <tuple>
- #endif
- namespace boost
- {
- namespace csbl
- {
- #if defined BOOST_THREAD_USES_BOOST_TUPLE
- using ::boost::tuple;
- using ::boost::get;
- using ::boost::make_tuple;
-
- #else
-
- using ::std::tuple;
- using ::std::get;
- using ::std::make_tuple;
- using ::std::tuple_size;
-
-
-
-
-
-
- #endif
- }
- }
- #endif
|