|
1 // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // This file was generated automatically from the template eventsource.tmpl |
|
15 // on Wed, 05 Dec 2007 14:54:32 (time stamp) |
|
16 // |
|
17 // |
|
18 |
|
19 /** |
|
20 @file |
|
21 @internalComponent |
|
22 */ |
|
23 |
|
24 #include <bluetooth/hci/userpasskeyrequestevent.h> |
|
25 #include <bluetooth/hci/hcierrors.h> |
|
26 #include <bluetooth/hci/hciopcodes.h> |
|
27 #include "symbiancommandseventsutils.h" |
|
28 |
|
29 #ifdef __FLOG_ACTIVE |
|
30 _LIT8(KLogComponent, LOG_COMPONENT_COMMANDSEVENTS_SYMBIAN); |
|
31 #endif |
|
32 |
|
33 // Construct an event object to wrap existing event data received from the Controller |
|
34 EXPORT_C TUserPasskeyRequestEvent::TUserPasskeyRequestEvent(const TDesC8& aEventData) |
|
35 : THCIEventBase(aEventData) |
|
36 { |
|
37 |
|
38 } |
|
39 |
|
40 // Construct a faked event, storing the supplied event parameters into the supplied empty event data buffer. |
|
41 EXPORT_C TUserPasskeyRequestEvent::TUserPasskeyRequestEvent(const TBTDevAddr& aBDADDR, TDes8& aEventData) |
|
42 : THCIEventBase(EUserPasskeyRequestEvent, 6, aEventData) |
|
43 { |
|
44 |
|
45 PutDevAddr(aBDADDR, aEventData); |
|
46 iEventData.Set(aEventData); |
|
47 } |
|
48 |
|
49 // Destructor |
|
50 EXPORT_C TUserPasskeyRequestEvent::~TUserPasskeyRequestEvent() |
|
51 { |
|
52 } |
|
53 |
|
54 // The static Cast method is used to obtain a pointer to the derived class object |
|
55 EXPORT_C TUserPasskeyRequestEvent& TUserPasskeyRequestEvent::Cast(const THCIEventBase& aEvent) |
|
56 { |
|
57 __ASSERT_DEBUG(aEvent.EventCode() == EUserPasskeyRequestEvent, PANIC(KSymbianCommandsEventsPanicCat, EWrongEventCode)); |
|
58 return *(reinterpret_cast<TUserPasskeyRequestEvent*>(&const_cast<THCIEventBase&>(aEvent))); |
|
59 } |
|
60 |
|
61 // Accessor methods for the parameters of the event |
|
62 |
|
63 EXPORT_C TBTDevAddr TUserPasskeyRequestEvent::BDADDR() const |
|
64 { |
|
65 return AsDevAddr(2); |
|
66 } |
|
67 |
|
68 |