CoinUtils
trunk
|
00001 /* $Id$ */ 00002 // Copyright (C) 2004, International Business Machines 00003 // Corporation and others. All Rights Reserved. 00004 // This code is licensed under the terms of the Eclipse Public License (EPL). 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