I downloaded QuickFix.dll
from quickfixengine.org
When I declare an object which belongs to namespace QuickFix::Fields
, I cannot get its corresponding base value (I mean char value for OrdType
, string value for OrderID
etc). As there are no properties associated with them.
Is there any other way to achieve the same?
The code is:
......
QuickField::Fields::OrdType ordType;
message.Get(OrdType);//message is a NewOrderSingle
//type object defined prevviously in the code
//Now i wish to get the value contained in "ordType" but it has no
//properties to access its data member(s)