00001 /* $Id: CoinUtility.hpp 1215 2009-11-05 11:03:04Z forrest $ */ 00002 #ifndef CoinUtility_h_ 00003 #define CoinUtility_h_ 00004 00005 #include "CoinSort.hpp" 00006 00007 template <typename S, typename T> 00008 CoinPair<S,T> CoinMakePair(const S& s, const T& t) 00009 { return CoinPair<S,T>(s, t); } 00010 00011 template <typename S, typename T, typename U> 00012 CoinTriple<S,T,U> CoinMakeTriple(const S& s, const T& t, const U& u) 00013 { return CoinTriple<S,T,U>(s, t, u); } 00014 00015 #endif