diff options
author | Max Kellermann <max@duempel.org> | 2015-01-08 16:54:18 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2015-01-08 16:56:22 +0100 |
commit | c76c7c68ff497a9e9bc33c14db097b8a17f1f5f9 (patch) | |
tree | 6de91b6320142fbb81b4ef628f9c2d27fbbffec4 | |
parent | 59ac9d39d5950bb8bb041c5d49dc818ee0384d8c (diff) | |
download | mpd-c76c7c68ff497a9e9bc33c14db097b8a17f1f5f9.tar.gz mpd-c76c7c68ff497a9e9bc33c14db097b8a17f1f5f9.tar.xz mpd-c76c7c68ff497a9e9bc33c14db097b8a17f1f5f9.zip |
output/recorder: convert struct to class
-rw-r--r-- | src/output/plugins/RecorderOutputPlugin.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/output/plugins/RecorderOutputPlugin.cxx b/src/output/plugins/RecorderOutputPlugin.cxx index 5f6a55418..295fb948c 100644 --- a/src/output/plugins/RecorderOutputPlugin.cxx +++ b/src/output/plugins/RecorderOutputPlugin.cxx @@ -31,7 +31,9 @@ #include <assert.h> -struct RecorderOutput { +class RecorderOutput { + friend struct AudioOutputWrapper<RecorderOutput>; + AudioOutput base; /** |