aboutsummaryrefslogtreecommitdiffstats
path: root/src/Timer.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-08-03 21:00:50 +0200
committerMax Kellermann <max@duempel.org>2013-08-03 21:37:56 +0200
commitd1e7b4e38136f9342aad76c685a13adf0e69f869 (patch)
tree49643b937ddfe735511b566a71398da5a945d7aa /src/Timer.hxx
parent67f591a9ce60651da41afc499bd9a22e25314e35 (diff)
downloadmpd-d1e7b4e38136f9342aad76c685a13adf0e69f869.tar.gz
mpd-d1e7b4e38136f9342aad76c685a13adf0e69f869.tar.xz
mpd-d1e7b4e38136f9342aad76c685a13adf0e69f869.zip
audio_format: convert to C++
Diffstat (limited to 'src/Timer.hxx')
-rw-r--r--src/Timer.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Timer.hxx b/src/Timer.hxx
index 96446a988..ccc29b873 100644
--- a/src/Timer.hxx
+++ b/src/Timer.hxx
@@ -22,14 +22,14 @@
#include <stdint.h>
-struct audio_format;
+struct AudioFormat;
class Timer {
uint64_t time;
bool started;
const int rate;
public:
- explicit Timer(const struct audio_format& af);
+ explicit Timer(AudioFormat af);
bool IsStarted() const { return started; }