39 lines
749 B
C++
39 lines
749 B
C++
/*
|
|
* 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<SplitEvent> {
|
|
|
|
};
|
|
|
|
// create the template class SplitEventGroup
|
|
CREATE_EVENT_GROUP(SplitEvent,MoversightEventGroup);
|
|
|
|
}
|
|
}
|
|
|
|
#endif /* SPLITEVENT_H */
|
|
|