mirror of
https://github.com/debauchee/barrier.git
synced 2025-06-17 02:01:41 +02:00
ipc client connect test with working unit tests.
This commit is contained in:
parent
7d8fd5927d
commit
218e98398f
15 changed files with 86 additions and 40 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue