mirror of
https://github.com/DrKLO/Telegram.git
synced 2024-12-22 22:45:18 +01:00
33 lines
847 B
C++
33 lines
847 B
C++
/*
|
|
* This is the source code of tgnet library v. 1.0
|
|
* It is licensed under GNU GPL v. 2 or later.
|
|
* You should have received a copy of the license in this archive (see LICENSE).
|
|
*
|
|
* Copyright Nikolai Kudashov, 2015.
|
|
*/
|
|
|
|
#include "EventObject.h"
|
|
#include "Connection.h"
|
|
#include "Timer.h"
|
|
|
|
EventObject::EventObject(void *object, EventObjectType type) {
|
|
eventObject = object;
|
|
eventType = type;
|
|
}
|
|
|
|
void EventObject::onEvent(uint32_t events) {
|
|
switch (eventType) {
|
|
case EventObjectTypeConnection: {
|
|
Connection *connection = (Connection *) eventObject;
|
|
connection->onEvent(events);
|
|
break;
|
|
}
|
|
case EventObjectTypeTimer: {
|
|
Timer *timer = (Timer *) eventObject;
|
|
timer->onEvent();
|
|
break;
|
|
}
|
|
default:
|
|
break;
|
|
}
|
|
}
|