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