/* $Id$ */// Copyright (C) 2004, International Business Machines// Corporation and others. All Rights Reserved.// This code is licensed under the terms of the Eclipse Public License (EPL).#ifndef CoinUtility_h_#define CoinUtility_h_#include "CoinSort.hpp"template<typenameS,typenameT>CoinPair<S,T>CoinMakePair(constS&s,constT&t){returnCoinPair<S,T>(s,t);}template<typenameS,typenameT,typenameU>CoinTriple<S,T,U>CoinMakeTriple(constS&s,constT&t,constU&u){returnCoinTriple<S,T,U>(s,t,u);}#endif/* vi: softtabstop=2 shiftwidth=2 expandtab tabstop=2*/