From 24780d99e61af44141e8f0d0d0776a1c994e6770 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Thu, 17 Oct 2013 10:20:57 +0200 Subject: input_plugin: rename struct to "InputPlugin" --- src/InputStream.hxx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/InputStream.hxx') 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), -- cgit v1.2.3