Symbian
Symbian Developer Library

SYMBIAN OS V9.4

Feedback

[Index] [Previous] [Next]

#include <mmfcontrollerframeworkbase.h>
Link against: mmfcontrollerframework.lib

Class TMMFEvent

class TMMFEvent;

Description

General purpose class to describe an event.

Contains a UID to define the actual event type, and an integer to define the event code.

Controller plugins can define their own event types, but should use KMMFErrorCategoryControllerGeneralError for any errors that can be described by the standard system-wide error codes.

Members

Defined in TMMFEvent:


Construction and destruction


TMMFEvent(TUid,TInt)

IMPORT_C TMMFEvent(TUid aEventType, TInt aErrorCode);

Description

Constructor.

Parameters

TUid aEventType

A UID to define the type of event.

TInt aErrorCode

The error code associated with the event.


TMMFEvent()

IMPORT_C TMMFEvent();

Description

Default constructor.

Provided so this class can be packaged in a TPckgBuf<>.

[Top]


Member data


iEventType

TUid iEventType;

Description

A UID to define the event type.


iErrorCode

TInt iErrorCode;

Description

The error code associated with the event.