1 #ifndef _MIXER_OUTPUT_H 2 #define _MIXER_OUTPUT_H 3 4 class MixerCore; 5 6 class MixerOutput 7 { 8 public: 9 MixerOutput(MixerCore *core); 10 ~MixerOutput(); 11 12 media_output MediaOutput(); 13 14 private: 15 MixerCore *fCore; 16 }; 17 18 #endif 19