diff options
author | Max Kellermann <max@duempel.org> | 2014-05-11 15:34:48 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-05-11 15:34:48 +0200 |
commit | 6773adc7716eea7656c4590b54f7c99840ff4087 (patch) | |
tree | b71756798018721f3aa472ce1b81aa14e84239b8 /src/playlist | |
parent | ee2afb35dd715d9f34a938cd54ed02a3c0091a78 (diff) | |
download | mpd-6773adc7716eea7656c4590b54f7c99840ff4087.tar.gz mpd-6773adc7716eea7656c4590b54f7c99840ff4087.tar.xz mpd-6773adc7716eea7656c4590b54f7c99840ff4087.zip |
InputStream: convert to class
Diffstat (limited to 'src/playlist')
-rw-r--r-- | src/playlist/CloseSongEnumerator.hxx | 2 | ||||
-rw-r--r-- | src/playlist/PlaylistPlugin.hxx | 2 | ||||
-rw-r--r-- | src/playlist/PlaylistRegistry.hxx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/playlist/CloseSongEnumerator.hxx b/src/playlist/CloseSongEnumerator.hxx index 5a95cc28b..17f015394 100644 --- a/src/playlist/CloseSongEnumerator.hxx +++ b/src/playlist/CloseSongEnumerator.hxx @@ -23,7 +23,7 @@ #include "SongEnumerator.hxx" #include "Compiler.h" -struct InputStream; +class InputStream; /** * A #SongEnumerator wrapper that closes an #InputStream automatically diff --git a/src/playlist/PlaylistPlugin.hxx b/src/playlist/PlaylistPlugin.hxx index d3c44f1f4..fd779ad8d 100644 --- a/src/playlist/PlaylistPlugin.hxx +++ b/src/playlist/PlaylistPlugin.hxx @@ -21,7 +21,7 @@ #define MPD_PLAYLIST_PLUGIN_HXX struct config_param; -struct InputStream; +class InputStream; struct Tag; class Mutex; class Cond; diff --git a/src/playlist/PlaylistRegistry.hxx b/src/playlist/PlaylistRegistry.hxx index f1833b925..7ce559baa 100644 --- a/src/playlist/PlaylistRegistry.hxx +++ b/src/playlist/PlaylistRegistry.hxx @@ -23,7 +23,7 @@ class Mutex; class Cond; class SongEnumerator; -struct InputStream; +class InputStream; extern const struct playlist_plugin *const playlist_plugins[]; |