Location:
mmfstandardcustomcommands.h
Link against: mmfstandardcustomcommands.lib
class CMMFAudioControllerCustomCommandParser : public CMMFCustomCommandParserBase;
Custom command parser class to be used by controller plugins wishing to support audio controller commands.
The controller plugin must be derived from MMMFAudioControllerCustomCommandImplementor
to use this class.
The controller plugin should create an object of this type and add it to the list of custom command parsers in the controller framework. See the following example code for details.
void CMMFAudioController::ConstructL()
{
// Construct custom command parsers
CMMFAudioPlayDeviceCustomCommandParser* audPlayDevParser = CMMFAudioPlayDeviceCustomCommandParser::NewL(*this);
CleanupStack::PushL(audPlayDevParser);
AddCustomCommandParserL(*audPlayDevParser); //parser now owned by controller framework
CleanupStack::Pop();//audPlayDevParser
CMMFAudioRecordDeviceCustomCommandParser* audRecDevParser = CMMFAudioRecordDeviceCustomCommandParser::NewL(*this);
CleanupStack::PushL(audRecDevParser);
AddCustomCommandParserL(*audRecDevParser); //parser now owned by controller framework
CleanupStack::Pop();//audRecDevParser
etc.
}
CBase
- Base class for all classes to be instantiated on the heap
CMMFCustomCommandParserBase
- Base class to define the interface of a custom command parser
CMMFAudioControllerCustomCommandParser
- Custom command parser class to be used by controller plugins wishing to support audio controller commands
Defined in CMMFAudioControllerCustomCommandParser
:
HandleRequest()
, NewL()
, ~CMMFAudioControllerCustomCommandParser()
Inherited from CBase
:
Delete()
,
Extension_()
,
operator new()
Inherited from CMMFCustomCommandParserBase
:
InterfaceId()
static IMPORT_C CMMFAudioControllerCustomCommandParser *NewL(MMMFAudioControllerCustomCommandImplementor &aImplementor);
Creates a new custom command parser capable of handling audio controller commands.
|
|
virtual void HandleRequest(TMMFMessage &aMessage);
Handles a request from the client. Called by the controller framework.
|