Simplified XF 1.1.0
initialevent.h
1#ifndef INITIALEVENT_H
2#define INITIALEVENT_H
3
4#include "xf/event.h"
5
16class XFInitialEvent : public XFEvent
17{
18public:
20
21 bool deleteAfterConsume() const override;
22};
23 // end of xf_core group
25#endif // INITIALEVENT_H
Base class for all types of events and timeouts.
Definition: event.h:23
Initial event to start a behavior.
Definition: initialevent.h:17
bool deleteAfterConsume() const override
See XFEvent.