| 501 | } |
| 502 | |
| 503 | void Framework::pushEvent(up<Event> e) |
| 504 | { |
| 505 | std::lock_guard<std::mutex> l(p->eventQueueLock); |
| 506 | p->eventQueue.push_back(std::move(e)); |
| 507 | } |
| 508 | |
| 509 | void Framework::pushEvent(Event *e) { this->pushEvent(up<Event>(e)); } |
| 510 |
no outgoing calls
no test coverage detected