mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-11 03:32:16 +03:00
15 lines
388 B
Python
15 lines
388 B
Python
#!/usr/bin/python3
|
|
# -*- coding: utf-8 -*-
|
|
# @author: İsmail BAŞARAN <ismail.basaran@tubitak.gov.tr> <basaran.ismaill@gmail.com>
|
|
|
|
from base.event.EventBase import EventBase, Event
|
|
|
|
|
|
class EventManager(EventBase):
|
|
"""docstring for EventManager"""
|
|
|
|
def __init__(self):
|
|
EventBase.__init__(self)
|
|
|
|
def fireEvent(self, event_name, *args):
|
|
Event(event_name, *args)
|