2020-05-24 11:26:21 +08:00
|
|
|
#include <kiwano/event/Event.h>
|
2019-12-31 11:22:23 +08:00
|
|
|
|
|
|
|
|
namespace kiwano
|
|
|
|
|
{
|
2020-02-19 12:09:50 +08:00
|
|
|
Event::Event(const EventType& type)
|
2020-01-21 10:09:55 +08:00
|
|
|
: type_(type)
|
|
|
|
|
{
|
|
|
|
|
}
|
2019-12-31 11:22:23 +08:00
|
|
|
|
2020-01-21 10:09:55 +08:00
|
|
|
Event::~Event() {}
|
2019-12-31 11:22:23 +08:00
|
|
|
|
2020-01-21 10:09:55 +08:00
|
|
|
} // namespace kiwano
|