14 #ifndef ESYS_LSMQUINTUPLE_H
15 #define ESYS_LSMQUINTUPLE_H
17 #include <boost/tuple/tuple.hpp>
23 template <
typename T1,
typename T2,
typename T3,
typename T4,
typename T5>
24 class quintuple :
public boost::tuple<T1,T2,T3,T4,T5>
27 typedef boost::tuple<T1,T2,T3,T4,T5> inherited;
32 inline quintuple(
const T1 &t1,
const T2 &t2,
const T3 &t3,
const T4 &t4,
const T5 &t5)
33 : inherited(t1,t2,t3,t4,t5)
44 inherited::operator=(quin);