aboutsummaryrefslogtreecommitdiffstats
path: root/src/InputStream.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-10-17 10:20:57 +0200
committerMax Kellermann <max@duempel.org>2013-10-17 10:20:57 +0200
commit24780d99e61af44141e8f0d0d0776a1c994e6770 (patch)
tree23cc5597c41d9031eb74892ef7d7c0e5eceb05fd /src/InputStream.hxx
parent7c1cf617282c591dff85df164c178198a0ce7738 (diff)
downloadmpd-24780d99e61af44141e8f0d0d0776a1c994e6770.tar.gz
mpd-24780d99e61af44141e8f0d0d0776a1c994e6770.tar.xz
mpd-24780d99e61af44141e8f0d0d0776a1c994e6770.zip
input_plugin: rename struct to "InputPlugin"
Diffstat (limited to 'src/InputStream.hxx')
-rw-r--r--src/InputStream.hxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/InputStream.hxx b/src/InputStream.hxx
index aee2bc426..51f32deec 100644
--- a/src/InputStream.hxx
+++ b/src/InputStream.hxx
@@ -33,12 +33,13 @@
class Cond;
class Error;
struct Tag;
+struct InputPlugin;
struct input_stream {
/**
* the plugin which implements this input stream
*/
- const struct input_plugin &plugin;
+ const InputPlugin &plugin;
/**
* The absolute URI which was used to open this stream.
@@ -91,7 +92,7 @@ struct input_stream {
*/
std::string mime;
- input_stream(const input_plugin &_plugin,
+ input_stream(const InputPlugin &_plugin,
const char *_uri, Mutex &_mutex, Cond &_cond)
:plugin(_plugin), uri(_uri),
mutex(_mutex), cond(_cond),