32 lines
598 B
C++
32 lines
598 B
C++
/*
|
|
* File: JoinAbortToInviteeTimer.h
|
|
* Author: jgaebler
|
|
*
|
|
* Created on March 3, 2011, 2:59 PM
|
|
*/
|
|
#pragma once
|
|
|
|
#ifndef JOINABORTTOINVITEETIMER_H
|
|
#define JOINABORTTOINVITEETIMER_H
|
|
|
|
#include "InvitationTimer.h"
|
|
|
|
namespace ubeeme {
|
|
namespace moversight {
|
|
|
|
class JoinAbortToInviteeTimer : public InvitationTimer {
|
|
public:
|
|
|
|
JoinAbortToInviteeTimer(MembershipService & ms);
|
|
virtual ~JoinAbortToInviteeTimer();
|
|
|
|
virtual void timeout();
|
|
|
|
JoinAbortToInviteeTimer * dup();
|
|
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif /* JOINABORTTOINVITEETIMER_H */
|