update20140630

This commit is contained in:
stubbfel
2014-06-30 13:58:10 +02:00
parent 565970632e
commit 1e6cf42df3
877 changed files with 1146249 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
/*
* File: UnicastMessageRetransmitTimerQueue.h
* Author: jgaebler
*
* Created on November 1, 2012, 3:39 PM
*/
#pragma once
#ifndef UNICASTMESSAGERETRANSMITTIMERQUEUE_H
#define UNICASTMESSAGERETRANSMITTIMERQUEUE_H
#include "UnicastMessageRetransmitTimer.h"
#include "common/timer/ReferenceTimerQueue.h"
namespace ubeeme {
namespace moversight {
/**
* @brief Defines a queue for storing UnicastMessageRetransmit timers.
* @class UnicastMessageRetransmitTimerQueue
* @author Jan Gäbler
* @ingroup Moversight
*/
class UnicastMessageRetransmitTimerQueue : public ReferenceTimerQueue <MessageReference, UnicastMessageRetransmitTimer * > {
};
}
}
#endif /* UNICASTMESSAGERETRANSMITTIMERQUEUE_H */