/*===========================================================================* * This file is part of the Branch, Constrain and Price Software (BiCePS) * * * * BiCePS is distributed under the Common Public License as part of the * * COIN-OR repository (http://www.coin-or.org). * * * * Authors: * * * * Yan Xu, Lehigh University * * Ted Ralphs, Lehigh University * * * * Conceptual Design: * * * * Yan Xu, Lehigh University * * Ted Ralphs, Lehigh University * * Laszlo Ladanyi, IBM T.J. Watson Research Center * * Matthew Saltzman, Clemson University * * * * Copyright (C) 2001-2008, Lehigh University, Yan Xu, and Ted Ralphs. * * All Rights Reserved. * *===========================================================================*/ #ifndef BcpsMessage_H_ #define BcpsMessage_H_ //############################################################################# // This file is modified from SbbMessage.hpp //############################################################################# #if defined(_MSC_VER) // Turn off compiler warning about long names # pragma warning(disable:4786) #endif /** This deals with Bcps messages. */ #include "CoinMessageHandler.hpp" enum BCPS_Message { BCPS_S_VERSION, BCPS_DUMMY_END }; class BcpsMessage : public CoinMessages { public: /**@name Constructors etc */ //@{ /** Constructor */ BcpsMessage(Language language=us_en); //@} }; #endif