29 lines
549 B
C++
29 lines
549 B
C++
#pragma once
|
|
|
|
#ifndef SPLIT_DONE_EVENT_H
|
|
#define SPLIT_DONE_EVENT_H
|
|
|
|
#include <core/event/group_event.h>
|
|
|
|
#include "EventTypes.h"
|
|
#include "common/Defines.h"
|
|
|
|
namespace ubeeme {
|
|
namespace moversight {
|
|
|
|
class MOV_EXPORT RejoinDoneEvent: public GroupEvent<EventTypes> {
|
|
|
|
public:
|
|
RejoinDoneEvent();
|
|
virtual ~RejoinDoneEvent();
|
|
static EventType getType();
|
|
|
|
|
|
private:
|
|
|
|
};
|
|
}
|
|
} // namespace ubeeme
|
|
|
|
#endif // SPLIT_NOTIFY_EVENT_H
|