mirror of
https://github.com/debauchee/barrier.git
synced 2026-07-02 09:56:52 +08:00
ipc client connect test with working unit tests.
This commit is contained in:
@@ -54,6 +54,18 @@ CEventQueue::~CEventQueue()
|
||||
setInstance(NULL);
|
||||
}
|
||||
|
||||
void
|
||||
CEventQueue::loop()
|
||||
{
|
||||
CEvent event;
|
||||
getEvent(event);
|
||||
while (event.getType() != CEvent::kQuit) {
|
||||
dispatchEvent(event);
|
||||
CEvent::deleteData(event);
|
||||
getEvent(event);
|
||||
}
|
||||
}
|
||||
|
||||
CEvent::Type
|
||||
CEventQueue::registerType(const char* name)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user