Re: [Quickfix-developers] Question about customized group
Brought to you by:
orenmnero
|
From: Djalma R. d. S. F. <drs...@gm...> - 2007-06-06 17:49:23
|
Hi, If you want to use a customized vesion of FIX42::NewOrderSingle, see my post about regenerating quickfix classes after changing xml files. This is the easiest way in my opinion. http://www.nabble.com/Rgenerating-code-after-changing-xml-files-in-spec-fix44-directory-tf3190167.html#a8855920 Basically, you need to change the definition of NewOrderSingle in FIX42.xmland use spec\generate.bat or spec\generate.sh and recompile quickfix (if you are using only C++ I think that this step is not required). In order to make the script execution faster, comment out the java / .Net code generation and also FIX versions you don't use in Generator.rb and run "ruby Generator.rb" or generate.bat, if you are using Windows. It will take some minutes to generate all the .h files for you. Djalma On 6/6/07, quickfixuser <fw...@ro...> wrote: > > QuickFIX Documentation: > http://www.quickfixengine.org/quickfix/doc/html/index.html > QuickFIX Support: http://www.quickfixengine.org/services.html > > > Hi, > I have to add a repeating group (NoLegs) to NewOrderSingle message for > fix42. It seems I have to change QuickFix codes to do it (please correct > me > if I am wrong). One question about Group Caass. > > For this constructor, can someone tell me what the m_delim is for? I do > not > see any use of it and get confused when I have to add a modified NoLegs > class for fix42 message. > > thanks > > Group( int field, int delim, const message_order& order ) > : FieldMap( order ), m_field( field ), m_delim( delim ) {} > > NoLegs() : > > FIX::Group(555,600,FIX::message_order(600,602,609,610,624,612,613,623,654,565,0)) > {} > > -- > View this message in context: > http://www.nabble.com/Question-about-customized-group-tf3879024.html#a10992496 > Sent from the QuickFIX - Dev mailing list archive at Nabble.com. > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > Quickfix-developers mailing list > Qui...@li... > https://lists.sourceforge.net/lists/listinfo/quickfix-developers > |