CoinUtility.hpp
Go to the documentation of this file.00001
00002
00003
00004
00005
00006 #ifndef CoinUtility_h_
00007 #define CoinUtility_h_
00008
00009 #include "CoinSort.hpp"
00010
00011 template <typename S, typename T>
00012 CoinPair<S,T> CoinMakePair(const S& s, const T& t)
00013 { return CoinPair<S,T>(s, t); }
00014
00015 template <typename S, typename T, typename U>
00016 CoinTriple<S,T,U> CoinMakeTriple(const S& s, const T& t, const U& u)
00017 { return CoinTriple<S,T,U>(s, t, u); }
00018
00019 #endif