diff -r 000000000000 -r 29b1cd4cb562 bthci/hci2implementations/CommandsEvents/symbian/src/linkkeynotificationevent.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bthci/hci2implementations/CommandsEvents/symbian/src/linkkeynotificationevent.cpp Fri Jan 15 08:13:17 2010 +0200 @@ -0,0 +1,80 @@ +// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). +// All rights reserved. +// This component and the accompanying materials are made available +// under the terms of "Eclipse Public License v1.0" +// which accompanies this distribution, and is available +// at the URL "http://www.eclipse.org/legal/epl-v10.html". +// +// Initial Contributors: +// Nokia Corporation - initial contribution. +// +// Contributors: +// +// Description: +// This file was generated automatically from the template eventsource.tmpl +// on Wed, 25 Jul 2007 17:00:41 (time stamp) +// +// + +/** + @file + @internalComponent +*/ + +#include +#include +#include +#include "symbiancommandseventsutils.h" + +#ifdef __FLOG_ACTIVE +_LIT8(KLogComponent, LOG_COMPONENT_COMMANDSEVENTS_SYMBIAN); +#endif + +// Construct an event object to wrap existing event data received from the Controller +EXPORT_C TLinkKeyNotificationEvent::TLinkKeyNotificationEvent(const TDesC8& aEventData) + : THCIEventBase(aEventData) + { + + } + +// Construct a faked event, storing the supplied event parameters into the supplied empty event data buffer. +EXPORT_C TLinkKeyNotificationEvent::TLinkKeyNotificationEvent(const TBTDevAddr& aBDADDR, const TBTLinkKey& aLinkKey, TUint8 aKeyType, TDes8& aEventData) + : THCIEventBase(ELinkKeyNotificationEvent, 23, aEventData) + { + + PutDevAddr(aBDADDR, aEventData); + PutLinkKey(aLinkKey, aEventData); + PutTUint8(aKeyType, aEventData); + iEventData.Set(aEventData); + } + +// Destructor +EXPORT_C TLinkKeyNotificationEvent::~TLinkKeyNotificationEvent() + { + } + +// The static Cast method is used to obtain a pointer to the derived class object +EXPORT_C TLinkKeyNotificationEvent& TLinkKeyNotificationEvent::Cast(const THCIEventBase& aEvent) + { + __ASSERT_DEBUG(aEvent.EventCode() == ELinkKeyNotificationEvent, PANIC(KSymbianCommandsEventsPanicCat, EWrongEventCode)); + return *(reinterpret_cast(&const_cast(aEvent))); + } + +// Accessor methods for the parameters of the event + +EXPORT_C TBTDevAddr TLinkKeyNotificationEvent::BDADDR() const + { + return AsDevAddr(2); + } + +EXPORT_C TBTLinkKey TLinkKeyNotificationEvent::LinkKey() const + { + return AsLinkKey(8); + } + +EXPORT_C TUint8 TLinkKeyNotificationEvent::KeyType() const + { + return AsTUint8(24); + } + +