#ifndef EVENT_H #define EVENT_H class Event { public: virtual ~Event() = default; }; #endif // EVENT_H