/* * File: SplitEvent.h * Author: noackrob * * Created on October 8, 2013, 3:13 PM */ #pragma once #ifndef SPLITEVENT_H #define SPLITEVENT_H #include "event/MoversightEvent.h" namespace ubeeme { namespace moversight { /** * @brief Event group containing events regarding split operations * @class SplitEvent * @author Robert Noack * @ingroup Moversight * * Contains * - SplitAbortEvent * - SplitDoneEvent */ class SplitEvent : public MoversightEventGroup { }; // create the template class SplitEventGroup CREATE_EVENT_GROUP(SplitEvent,MoversightEventGroup); } } #endif /* SPLITEVENT_H */