Dynalib Utils
IDynaListener.h
Go to the documentation of this file.
1 //
2 // Created by Ken Kopelson on 26/03/18.
3 //
4 
5 #ifndef IDYNALISTENER_H
6 #define IDYNALISTENER_H
7 
8 #include "IDynaEvent.h"
9 
11 public:
12  IDynaListener() = default;
13  virtual ~IDynaListener() = default;
14  virtual void handeEvent(IDynaEvent* event) = 0;
15 };
16 
17 #endif //IDYNALISTENER_H
virtual void handeEvent(IDynaEvent *event)=0
virtual ~IDynaListener()=default
Definition: IDynaEvent.h:8
Definition: IDynaListener.h:10
IDynaListener()=default