author | William Roberts <williamr@symbian.org> |
Wed, 16 Jun 2010 17:28:40 +0100 | |
branch | GCC_SURGE |
changeset 28 | 85bf606b6d29 |
parent 0 | 29b1cd4cb562 |
permissions | -rw-r--r-- |
// 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, 05 Dec 2007 14:54:31 (time stamp) // // /** @file @internalComponent */ #include <bluetooth/hci/userpasskeynotificationevent.h> #include <bluetooth/hci/hcierrors.h> #include <bluetooth/hci/hciopcodes.h> #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 TUserPasskeyNotificationEvent::TUserPasskeyNotificationEvent(const TDesC8& aEventData) : THCIEventBase(aEventData) { } // Construct a faked event, storing the supplied event parameters into the supplied empty event data buffer. EXPORT_C TUserPasskeyNotificationEvent::TUserPasskeyNotificationEvent(const TBTDevAddr& aBDADDR, TUint32 aPasskey, TDes8& aEventData) : THCIEventBase(EUserPasskeyNotificationEvent, 10, aEventData) { PutDevAddr(aBDADDR, aEventData); PutTUint32(aPasskey, 4, aEventData); iEventData.Set(aEventData); } // Destructor EXPORT_C TUserPasskeyNotificationEvent::~TUserPasskeyNotificationEvent() { } // The static Cast method is used to obtain a pointer to the derived class object EXPORT_C TUserPasskeyNotificationEvent& TUserPasskeyNotificationEvent::Cast(const THCIEventBase& aEvent) { __ASSERT_DEBUG(aEvent.EventCode() == EUserPasskeyNotificationEvent, PANIC(KSymbianCommandsEventsPanicCat, EWrongEventCode)); return *(reinterpret_cast<TUserPasskeyNotificationEvent*>(&const_cast<THCIEventBase&>(aEvent))); } // Accessor methods for the parameters of the event EXPORT_C TBTDevAddr TUserPasskeyNotificationEvent::BDADDR() const { return AsDevAddr(2); } EXPORT_C TUint32 TUserPasskeyNotificationEvent::Passkey() const { return AsTUint32(8, 4); }