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, const media_output &output); 10 ~MixerOutput(); 11 12 media_output & MediaOutput(); 13 14 private: 15 MixerCore *fCore; 16 media_output fOutput; 17 }; 18 19 #endif 20