[Quickfix-users] [Quickfix-developers] Quickfix42 getHeader() problem for .NET - PROBLEM SOLVED
Brought to you by:
orenmnero
From: Christodoulou, C. D (london) <chr...@ml...> - 2003-09-30 15:34:15
|
Hi Just to let you know, I have solved the problem with the getHeader(). It was a bug in the quickfix source code. The derived class Message was actually creating a quickfix header as the compiler had 2 choices (base and derived), so the compiler picked the one most local to it, that is m_header = new Header(this); was really creating a quickfix header instead of quickfix42. Therefore m_header = new QuickFix42::Header(this); will sort problem. I had to go through all the code to make the necessary changes. Thanks Chris |