17 lines
388 B
C++
17 lines
388 B
C++
#include "SplitNotifyEvent.h"
|
|
|
|
namespace ubeeme {
|
|
namespace moversight {
|
|
|
|
SplitNotifyEvent::SplitNotifyEvent() : GroupEvent<EventTypes>(getType()){
|
|
}
|
|
|
|
SplitNotifyEvent::~SplitNotifyEvent(){
|
|
}
|
|
|
|
EventType SplitNotifyEvent::getType() {
|
|
return EventType(getGroup(), EventTypes::SPLIT_NOTIFY_EVENT);
|
|
}
|
|
}
|
|
}// namespace ubeeme
|