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