| 311 | } |
| 312 | |
| 313 | void Object::ReceiveObjectMessage(OBJECT_MSG::Type type, ...) { |
| 314 | va_list args; |
| 315 | va_start(args, type); |
| 316 | ReceiveObjectMessageVAList(type, args); |
| 317 | va_end(args); |
| 318 | } |
| 319 | |
| 320 | void Object::ReceiveObjectMessageVAList(OBJECT_MSG::Type type, va_list args) { |
| 321 | switch (type) { |
no outgoing calls
no test coverage detected