14 #ifndef ESYS_LSMQUADTUPLE_H
15 #define ESYS_LSMQUADTUPLE_H
17 #include <boost/tuple/tuple.hpp>
23 template <
typename T1,
typename T2,
typename T3,
typename T4>
27 typedef boost::tuple<T1,T2,T3,T4> inherited;
32 inline quadtuple(
const T1 &t1,
const T2 &t2,
const T3 &t3,
const T4 &t4)
33 : inherited(t1,t2,t3,t4)
44 inherited::operator=(quad);