diff options
author | Max Kellermann <max@duempel.org> | 2015-01-04 19:15:51 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2015-01-04 19:46:51 +0100 |
commit | efea609dc328a0a17bdec11586bb54041981ff62 (patch) | |
tree | f0cf64d932040423e226333d4efded2cef7cf692 /src/output/plugins/PulseOutputPlugin.cxx | |
parent | f3a160038decadade9e223adb006ba8acc3939e7 (diff) | |
download | mpd-efea609dc328a0a17bdec11586bb54041981ff62.tar.gz mpd-efea609dc328a0a17bdec11586bb54041981ff62.tar.xz mpd-efea609dc328a0a17bdec11586bb54041981ff62.zip |
output/pulse: convert to class
Diffstat (limited to 'src/output/plugins/PulseOutputPlugin.cxx')
-rw-r--r-- | src/output/plugins/PulseOutputPlugin.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/output/plugins/PulseOutputPlugin.cxx b/src/output/plugins/PulseOutputPlugin.cxx index ae88d2134..158b36dfd 100644 --- a/src/output/plugins/PulseOutputPlugin.cxx +++ b/src/output/plugins/PulseOutputPlugin.cxx @@ -42,7 +42,9 @@ #define MPD_PULSE_NAME "Music Player Daemon" -struct PulseOutput { +class PulseOutput { + friend struct AudioOutputWrapper<PulseOutput>; + AudioOutput base; const char *name; |