Re: [Quickfix-developers] FIXab.XML
Brought to you by:
orenmnero
|
From: <Bjo...@ub...> - 2004-05-01 15:07:01
|
Thanks Oren,
I will do that. I've already introduced a "ubitrade" header file to store
user defined tags.
By the way, I've added the the enums to the FIX.XML file. BUt I've also
added a comment line
<!-- --> to specify that these are specific entries.
QF didn't like it at all. I got an exception :
<value> does not have enum attribute in field " + name)
(DataDictionary.cpp).
Why is that?
Regards
Bjoern
Oren Miller
<oren@quickfixeng To: Bjo...@ub...
ine.org> cc: qui...@li...
Subject: Re: [Quickfix-developers] FIXab.XML
01/05/2004 17:02
You don't have to. The values are there to make their use more
readable in C++ so you can refer to them by their name instead of their
character. You could define them in either one of these files, or
elsewhere. Keep in mind if you regenerate, values.h is generated off
of FIX44.xml, so they could disappear from that file. What I would
probably do though if they are custom enumerations, is create something
like a UbitradeValues.h and stick any of your custom values in there.
That way you have a separate location for all your custom values. This
file you can keep in your own code base with your project. Then
whenever you upgrade QF you don't have to worry about re-adding those
values by changing or overwriting QF files.
--oren
On May 1, 2004, at 6:24 AM, Bjo...@ub... wrote:
> Hello,
>
> I've a question concerning the modification of the FIX43.XML file.
> I would like to add some <enum> entries for the field
> "SecurityIDSource".
>
> Do I have to add them also in some QF header files as
> Deprecatedvalues.h
> and
> or values.h?
>
> Thanks in advance
> Bjoern
>
>
>
>
>
>
> -------------------------------------------------------
> This SF.Net email is sponsored by: Oracle 10g
> Get certified on the hottest thing ever to hit the market... Oracle
> 10g.
> Take an Oracle 10g class now, and we'll give you the exam FREE.
> http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
> _______________________________________________
> Quickfix-developers mailing list
> Qui...@li...
> https://lists.sourceforge.net/lists/listinfo/quickfix-developers
>
|