[Quickfix-developers] QuickFixN, Mono, OS X, fails
Brought to you by:
orenmnero
From: Ben C. <ben...@gm...> - 2013-08-20 06:18:51
|
Hi Guys, My first post, please forgive if asking obvious questions! Trying to compile QuickFixN under Mono on my OS X. (Xamarin Studio) This compiles fine, accept for six lines of code in DefaultMessageFactory.cs: _factories[FixValues.BeginString.FIX40] = new QuickFix.FIX40.MessageFactory(); _factories[FixValues.BeginString.FIX41] = new QuickFix.FIX41.MessageFactory(); _factories[FixValues.BeginString.FIX42] = new QuickFix.FIX42.MessageFactory(); _factories[FixValues.BeginString.FIX43] = new QuickFix.FIX43.MessageFactory(); _factories[FixValues.BeginString.FIX44] = new QuickFix.FIX44.MessageFactory(); _factories[FixValues.BeginString.FIX50] = new QuickFix.FIX50.MessageFactory(); Giving the errors: quickfixn-master/QuickFIXn/DefaultMessageFactory.cs(68,68): Error CS0234: The type or namespace name `FIX40' does not exist in the namespace `QuickFix'. Are you missing an assembly reference? (CS0234) (QuickFix) quickfixn-master/QuickFIXn/DefaultMessageFactory.cs(68,68): Error CS0234: The type or namespace name `FIX41' does not exist in the namespace `QuickFix'. Are you missing an assembly reference? (CS0234) (QuickFix) (etc) Indeed, I can't find a FIX40 under the QuickFix namespace. But perhaps I am doing something wrong. Does this work for other members? Many thanks, Ben Clewett. |