我QuickFix.dll
从下载quickfixengine.org
当我声明一个属于 namespace 的对象时QuickFix::Fields
,我无法获得其对应的基值(我的意思是 char 值OrdType
,字符串值OrderID
等)。因为没有与它们关联的属性。
有没有其他方法可以达到同样的效果?
代码是:
......
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)