Commit 05d47bb0 authored by Max Kellermann's avatar Max Kellermann

output/null: convert struct to class

parent 575a5bd0
...@@ -23,13 +23,16 @@ ...@@ -23,13 +23,16 @@
#include "../Wrapper.hxx" #include "../Wrapper.hxx"
#include "../Timer.hxx" #include "../Timer.hxx"
struct NullOutput { class NullOutput {
friend struct AudioOutputWrapper<NullOutput>;
AudioOutput base; AudioOutput base;
bool sync; bool sync;
Timer *timer; Timer *timer;
public:
NullOutput() NullOutput()
:base(null_output_plugin) {} :base(null_output_plugin) {}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment