* @brief This function is called when we receive a "call" SML * message from the kernel. * * This is a static method and it's only function is to call * a normal member function. *************************************************************/
| 329 | * a normal member function. |
| 330 | *************************************************************/ |
| 331 | ElementXML* Kernel::ReceivedCall(Connection* pConnection, ElementXML* pIncoming, void* pUserData) |
| 332 | { |
| 333 | Kernel* pKernel = static_cast<Kernel*>(pUserData) ; |
| 334 | |
| 335 | return pKernel->ProcessIncomingSML(pConnection, pIncoming) ; |
| 336 | } |
| 337 | |
| 338 | /************************************************************* |
| 339 | * @brief If this message is an XML trace message returns |
nothing calls this directly
no test coverage detected