Files
scandocs/uni/masterarbeit/source/moversight/app/events/SplitNotifyEvent.h
2014-06-30 13:58:10 +02:00

29 lines
556 B
C++

#pragma once
#ifndef SPLIT_NOTIFY_EVENT_H
#define SPLIT_NOTIFY_EVENT_H
#include <core/event/group_event.h>
#include "EventTypes.h"
#include "common/Defines.h"
namespace ubeeme {
namespace moversight {
class MOV_EXPORT SplitNotifyEvent: public GroupEvent<EventTypes> {
public:
SplitNotifyEvent();
virtual ~SplitNotifyEvent();
static EventType getType();
private:
};
}
} // namespace ubeeme
#endif // SPLIT_NOTIFY_EVENT_H