00001 #warning The header dune/common/tuples.hh is deprecated. Use directly "std::tuple" and include dune/common/streamoperators.hh for stream operators.
00002
00003 #ifndef DUNE_TUPLES_HH
00004 #define DUNE_TUPLES_HH
00005
00006 #include <tuple>
00007 #include <dune/common/tupleutility.hh>
00008 #include <dune/common/streamoperators.hh>
00009
00010 namespace Dune {
00011 using std::tuple;
00012 using std::tuple_element;
00013 using std::get;
00014 using std::tuple_size;
00015 using std::tie;
00016 using std::make_tuple;
00017 }
00018 #endif