aboutsummaryrefslogtreecommitdiffstats
path: root/src/PlaylistMapper.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-10-17 10:06:31 +0200
committerMax Kellermann <max@duempel.org>2013-10-17 10:06:31 +0200
commit7c1cf617282c591dff85df164c178198a0ce7738 (patch)
treec94cfbbeaefd9eb380ac44de7bb3c6e7c8c59ce1 /src/PlaylistMapper.hxx
parenteb10d08671f3c3db2049b19a9959fe8c62532f35 (diff)
downloadmpd-7c1cf617282c591dff85df164c178198a0ce7738.tar.gz
mpd-7c1cf617282c591dff85df164c178198a0ce7738.tar.xz
mpd-7c1cf617282c591dff85df164c178198a0ce7738.zip
thread/{Cond,Mutex}: use "class" instead of "typedef"
Allows forward-declaration.
Diffstat (limited to 'src/PlaylistMapper.hxx')
-rw-r--r--src/PlaylistMapper.hxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/PlaylistMapper.hxx b/src/PlaylistMapper.hxx
index b966e6c39..69ed01d02 100644
--- a/src/PlaylistMapper.hxx
+++ b/src/PlaylistMapper.hxx
@@ -20,9 +20,8 @@
#ifndef MPD_PLAYLIST_MAPPER_HXX
#define MPD_PLAYLIST_MAPPER_HXX
-#include "thread/Mutex.hxx"
-#include "thread/Cond.hxx"
-
+class Mutex;
+class Cond;
class SongEnumerator;
struct input_stream;