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

40 lines
834 B
C++

/*
* File: RejoinEvent.h
* Author: noackrob
*
* Created on October 8, 2013, 3:09 PM
*/
#pragma once
#ifndef REJOINEVENT_H
#define REJOINEVENT_H
#include "ms/events/GroupEvent.h"
namespace ubeeme {
namespace moversight {
/**
* @brief Event group containing events regarding rejoin operations
* @class RejoinEvent
* @author Robert Noack
* @ingroup Moversight
*
* Contains
* - RejoinDoneEvent
* - RejoinFailedEvent
* - UnableToReconnectToGroupEvent
*/
class RejoinEvent : public GroupEventGroup<RejoinEvent> {
};
// create the template class RejoinEventGroup
CREATE_EVENT_GROUP(RejoinEvent,GroupEventGroup);
}
}
#endif /* REJOINEVENT_H */