// ShortModule.h // // // // // #ifndef SHORT_MODULE_H #define SHORT_MODULE_H #include "ErrorLogger/ErrorLog.h" class Event; #include class ShortModule{ public: ShortModule(const std::string &name); ~ShortModule(); void invoke(Event &e); private: ErrorLog errlog; }; #endif