Re: [Quickfix-developers] Incorrect data format
Brought to you by:
orenmnero
From: Mike G. <mg...@co...> - 2008-05-29 13:57:13
|
You shouldn't have a problem with operator==() if you use the type-safe way of handling msg fields: FIX::Side side; msg.get(side); if(FIX::Side_BUY == side) { } else if(FIX::Side_SELL == side) { } else { } -- Mike Gatny Connamara Systems, LLC http://www.connamara.com/ |