#include <mw/rconnmon.h>
| class CConnMonEventBase : public CBase |
| Public Member Functions | |
|---|---|
| CConnMonEventBase(const TInt, const TUint) | |
| ~CConnMonEventBase() | |
| IMPORT_C TUint | ConnectionId() |
| IMPORT_C TInt | EventType() |
Base class for all ConnMon event types.
void CMyConnMonObserver::EventL( const CConnMonEventBase& aEvent )
{
switch( aEvent.EventType() )
{
case EConnMonCreateConnection:
CConnMonCreateConnection* realEvent;
realEvent = (CConnMonCreateConnection*) &aEvent;
//...
| IMPORT_C TInt | EventType | ( | ) | const |
Gets the type of the event.
Returns: Type of the event. Values are defined in TConnMonEventType.