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: MTTimerQueue.h
* Author: jgaebler
*
* Created on February 15, 2013, 7:04 PM
*/
#ifndef MTTIMERQUEUE_H
#define MTTIMERQUEUE_H
#include "common/timer/ReferenceTimerQueue.h"
#include "common/transport/MessageReference.h"
#include "mt/timer/MTTimer.h"
namespace ubeeme {
namespace moversight {
/**
* @class MTTimerQueue
* @author Jan Gäbler
* @ingroup Moversight
* @brief Provides a list of MTTtimer.
*/
class MTTimerQueue : public ReferenceTimerQueue<MessageReference, MTTimer *>{
};
}
}
#endif /* MTTIMERQUEUE_H */