[Easysoap-checkins] CVS: easysoap/include/easysoap SOAPServer.h, 1.4, 1.5
Status: Beta
Brought to you by:
dcrowley
From: David C. <dcr...@us...> - 2006-11-10 18:03:34
|
Update of /cvsroot/easysoap/easysoap/include/easysoap In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv9750/include/easysoap Modified Files: SOAPServer.h Log Message: Patch by Zak Kipling to fix namespace issue. Index: SOAPServer.h =================================================================== RCS file: /cvsroot/easysoap/easysoap/include/easysoap/SOAPServer.h,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- SOAPServer.h 24 Jul 2002 20:57:56 -0000 1.4 +++ SOAPServer.h 10 Nov 2006 18:03:25 -0000 1.5 @@ -42,12 +42,12 @@ }; #define IMPLEMENT_DISPATCH(T) \ -T& DispatchTo(SOAPDispatchHandlerInterface* disp)\ +T& DispatchTo(EASYSOAP_NAMESPACE(SOAPDispatchHandlerInterface)* disp)\ {\ m_dispatch.DispatchTo(disp);\ return *this;\ }\ -T& DispatchTo(SOAPHeaderHandlerInterface* disp)\ +T& DispatchTo(EASYSOAP_NAMESPACE(SOAPHeaderHandlerInterface)* disp)\ {\ m_dispatch.DispatchTo(disp);\ return *this;\ |