CoinUtility.hpp
Go to the documentation of this file.
1 /* $Id: CoinUtility.hpp 1215 2009-11-05 11:03:04Z forrest $ */
2 #ifndef CoinUtility_h_
3 #define CoinUtility_h_
4 
5 #include "CoinSort.hpp"
6 
7 template <typename S, typename T>
8 CoinPair<S,T> CoinMakePair(const S& s, const T& t)
9 { return CoinPair<S,T>(s, t); }
10 
11 template <typename S, typename T, typename U>
12 CoinTriple<S,T,U> CoinMakeTriple(const S& s, const T& t, const U& u)
13 { return CoinTriple<S,T,U>(s, t, u); }
14 
15 #endif