[Quickfix-developers] Market Data Request -- dificulties getting a group.
Brought to you by:
orenmnero
From: Ben L. <be...@no...> - 2009-12-08 01:59:49
|
Hi, I'm trying to grab a group from a market data reply and having issues. The relevant code is below. I'm compiling with MSVS 2010 and getting this error: error C2664: 'FIX::Message::getGroup' : cannot convert parameter 2 from 'FIX::NoMDEntries' to 'FIX::Group &' Any help would be greatly appreciated. Thanks, Ben void Application::onMessage( const FIX42::MarketDataSnapshotFullRefresh& message, const FIX::SessionID& ) { cout << "onMessage: " << message.toString() << endl; FIX::Symbol symbol; message.get(symbol); FIX::NoMDEntries noMDEntries; message.getGroup(0, noMDEntries); } -- View this message in context: http://old.nabble.com/Market-Data-Request----dificulties-getting-a-group.-tp26687543p26687543.html Sent from the QuickFIX - Dev mailing list archive at Nabble.com. |