Re: [Quickfix-developers] quickfix 1.9.2 linking problem
Brought to you by:
orenmnero
From: Caleb E. <cal...@gm...> - 2004-11-24 17:10:36
|
On Wed, 24 Nov 2004 10:53:25 -0600, Boby Paul <bp...@gl...> wrote: > I am hitting the correct header file. But when I checked in the include dir, > I CANNOT find the header file which has getSessionID call with zero > parameter. Am I doing something wrong? No, there is not a version of Message::getSessionID which takes zero parameters. It now takes a std::string which is defaulted to "", so you can just *call* it with no arguments, but you are in reality calling the form that takes a string argument with the default value. Judging by your original problem report, it appears as though you're linking code that expects a version of Message::getSessionID that doesn't take *any* arguments, but that version does not exist any longer. -- Caleb Epstein caleb dot epstein at gmail dot com |