| 31 | using namespace sml ; |
| 32 | |
| 33 | soarxml::ElementXML* ReceivedCall(Connection* pConnection, soarxml::ElementXML* pIncoming, void* /*pUserData*/) |
| 34 | { |
| 35 | // This must be initialized when the connection was created. |
| 36 | KernelSML* pKernel = static_cast<KernelSML*>(pConnection->GetUserData()) ; |
| 37 | |
| 38 | return pKernel->ProcessIncomingSML(pConnection, pIncoming) ; |
| 39 | } |
| 40 | |
| 41 | static EmbeddedConnection* GetConnectionFromHandle(Connection_Receiver_Handle hConnection) |
| 42 | { |
nothing calls this directly
no test coverage detected