timer: convert to class

This commit is contained in:
Denis Krjuchkov
2013-05-12 19:03:42 +06:00
parent 21dac6c05d
commit 49a3845135
8 changed files with 83 additions and 94 deletions

View File

@@ -26,7 +26,7 @@
#define MPD_OUTPUT_HTTPD_INTERNAL_H
#include "OutputInternal.hxx"
#include "timer.h"
#include "Timer.hxx"
#include "thread/Mutex.hxx"
#include "event/ServerSocket.hxx"
@@ -72,10 +72,10 @@ struct HttpdOutput final : private ServerSocket {
mutable Mutex mutex;
/**
* A #timer object to synchronize this output with the
* A #Timer object to synchronize this output with the
* wallclock.
*/
struct timer *timer;
Timer *timer;
/**
* The header page, which is sent to every client on connect.