00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef M_EXTERNAL_AUDIO_OUTPUT_PORT_H
00024 #define M_EXTERNAL_AUDIO_OUTPUT_PORT_H
00025
00026 #include "MClientAudioOutputPort.h"
00027
00028 #include "MSupervisor.h"
00029
00039 class MExternalAudioOutputPort : public MClientAudioOutputPort
00040 {
00041
00042 Q_OBJECT
00043
00044
00045
00046 virtual string FullName ( ) const;
00047
00048 virtual jack_port_t * JACKHandle ( ) const;
00049
00050 protected :
00051
00052
00053
00058 MExternalAudioOutputPort ( const string & fullName, MSupervisor * supervisor );
00059
00060 friend void MSupervisor::addExternalAudioOutput ( const string & fullName );
00061
00062 string _fullName;
00063
00064 };
00065
00066 #endif // M_EXTERNAL_AUDIO_OUTPUT_PORT_H