mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-10 19:22:17 +03:00
14 lines
383 B
Python
14 lines
383 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)
|