equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2005-2006 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * Parameter provided to BT Accessory Server Plugins |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 // INCLUDE FILES |
|
21 |
|
22 |
|
23 inline TPluginParams::TPluginParams(const TUid aImplementationUid, MBTAccObserver& aObserver) |
|
24 : iImplementationUid(aImplementationUid), |
|
25 iObserver(aObserver) |
|
26 { |
|
27 |
|
28 } |
|
29 |
|
30 inline TPluginParams::~TPluginParams() |
|
31 { |
|
32 |
|
33 } |
|
34 |
|
35 inline TUid TPluginParams::ImplementationUid() const |
|
36 { |
|
37 //TRACE_OPT(KPRINTFTRACE, DebugPrint(_L("[BTAccServer]\t TPluginParams::ImplementationUid() "))); |
|
38 return iImplementationUid; |
|
39 } |
|
40 |
|
41 inline MBTAccObserver& TPluginParams::Observer() const |
|
42 { |
|
43 return iObserver; |
|
44 } |
|
45 |
|
46 // |
|
47 // End of file |