| 232 | a->BufferedAddStringInputWME(pId, pAttribute, pValue, clientTimetag); |
| 233 | } |
| 234 | void EmbeddedConnection::DirectAddWME_Int |
| 235 | (Direct_AgentSML_Handle pAgentSML, char const* pId, char const* pAttribute, int64_t value, int64_t clientTimetag) |
| 236 | { |
| 237 | AgentSML* a = reinterpret_cast<AgentSML*>(pAgentSML); |
| 238 | assert(a); |
| 239 | a->BufferedAddIntInputWME(pId, pAttribute, value, clientTimetag); |
| 240 | } |
| 241 | void EmbeddedConnection::DirectAddWME_Double |
| 242 | (Direct_AgentSML_Handle pAgentSMLIn, char const* pId, char const* pAttribute, double value, int64_t clientTimetag) |
| 243 | { |
no test coverage detected