Symbian
Symbian Developer Library

SYMBIAN OS V9.4

Feedback

[Index] [Previous] [Next]

#include <mmfstandardcustomcommands.h>
Link against: mmfstandardcustomcommands.lib

Class CMMFAudioRecordControllerCustomCommandParser

class CMMFAudioRecordControllerCustomCommandParser : public CMMFCustomCommandParserBase;

Description

Custom command parser class to be used by controller plugins wishing to support audio record controller commands.

The controller plugin must be derived from MMMFAudioRecordControllerCustomCommandImplementor 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.
    }

Derivation

Members

Defined in CMMFAudioRecordControllerCustomCommandParser:

Inherited from CBase:

Inherited from CMMFCustomCommandParserBase:


Construction and destruction


NewL(MMMFAudioRecordControllerCustomCommandImplementor &)

IMPORT_C static CMMFAudioRecordControllerCustomCommandParser* NewL(MMMFAudioRecordControllerCustomCommandImplementor &aImplementor);

Description

Creates a new custom command parser capable of handling audio record controller commands.

Parameters

MMMFAudioRecordControllerCustomCommandImplementor &aImplementor

A reference to the controller plugin that owns this new object.

Return value

CMMFAudioRecordControllerCustomCommandParser *

A pointer to the object created.


~CMMFAudioRecordControllerCustomCommandParser()

IMPORT_C ~CMMFAudioRecordControllerCustomCommandParser();

Description

Destructor.

[Top]


Member functions


HandleRequest(TMMFMessage &)

virtual void HandleRequest(TMMFMessage &aMessage);

Description

Handles a request from the client. Called by the controller framework.

Parameters

TMMFMessage &aMessage

The message to be handled.