diff options
author | Max Kellermann <max@duempel.org> | 2013-09-05 00:06:31 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-09-05 00:23:14 +0200 |
commit | 7d0269d2cec68c7e55df5b6db3d2266741534b17 (patch) | |
tree | 613f5d7b03bc9624f15167c76f8f4309603944cc /src/InputPlugin.hxx | |
parent | 52ffdb0a55e43153fa9fc1189316884a630df700 (diff) | |
download | mpd-7d0269d2cec68c7e55df5b6db3d2266741534b17.tar.gz mpd-7d0269d2cec68c7e55df5b6db3d2266741534b17.tar.xz mpd-7d0269d2cec68c7e55df5b6db3d2266741534b17.zip |
InputLegacy: move functions to the input_stream class
Diffstat (limited to 'src/InputPlugin.hxx')
-rw-r--r-- | src/InputPlugin.hxx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/InputPlugin.hxx b/src/InputPlugin.hxx index df6196f85..aa843d2c3 100644 --- a/src/InputPlugin.hxx +++ b/src/InputPlugin.hxx @@ -20,13 +20,17 @@ #ifndef MPD_INPUT_PLUGIN_HXX #define MPD_INPUT_PLUGIN_HXX -#include "InputLegacy.hxx" +#include "thread/Mutex.hxx" +#include "thread/Cond.hxx" + +#include <glib.h> #include <stddef.h> struct config_param; struct input_stream; class Error; +struct Tag; struct input_plugin { const char *name; |