#ifndef EVENT_H #define EVENT_H template struct event_receiver { virtual result event (event_data &) = 0; }; #endif