/* $Id$ * * Name: exprIf.hpp * Author: Pietro Belotti * Purpose: definition of the exprIf class that implements the ifnl AMPL operator * * (C) Carnegie-Mellon University, 2007. * This file is licensed under the Eclipse Public License (EPL) */ #ifndef EXPRIF_HPP #define EXPRIF_HPP #include "CouenneExprOp.hpp" namespace Couenne { class COUENNELIB_EXPORT exprIf: public exprOp { }; } #endif