[Quickfix-developers] ClOrdLinkID (tag 583) in Fix4.2
Brought to you by:
orenmnero
From: Joaquín G. <j.g...@ra...> - 2009-05-18 07:21:41
|
Hi all, Anyone knows how can I send tag 583 while running FIX 4.2? I just do: FIX::ClOrdLinkID ordLink; ordLink = FIX::ClOrdLinkID( "String_OidLink" ); newOrderSingle.set( ordLink ); which works with all other fields, but with this one i get the following output from compiler: error C2664: 'void __thiscall FIX42::NewOrderSingle::set(const class FIX::ClOrdID &)' : cannot convert parameter 1 from 'class FIX::ClOrdLinkID' to ' const class FIX::ClOrdID &' Reason: cannot convert from 'class FIX::ClOrdLinkID' to 'const class FIX::ClOrdID' No constructor could take the source type, or constructor overload resolution was ambiguous The error is marked on the third line. Can anyone help? Thanks. |