equal
deleted
inserted
replaced
|
1 // Copyright (c) 2004-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 // |
|
15 |
|
16 /** |
|
17 @file |
|
18 @internalComponent |
|
19 */ |
|
20 |
|
21 #include <remcon/clientinfo.h> |
|
22 #include <bluetooth/logger.h> |
|
23 |
|
24 #ifdef __FLOG_ACTIVE |
|
25 _LIT8(KLogComponent, LOG_COMPONENT_REMCON_SERVER); |
|
26 #endif |
|
27 |
|
28 EXPORT_C TClientInfo::TClientInfo() |
|
29 { |
|
30 LOG_FUNC |
|
31 } |
|
32 |
|
33 EXPORT_C TClientInfo::~TClientInfo() |
|
34 { |
|
35 LOG_FUNC |
|
36 } |
|
37 |
|
38 EXPORT_C TProcessId& TClientInfo::ProcessId() |
|
39 { |
|
40 return iProcessId; |
|
41 } |
|
42 |
|
43 EXPORT_C TProcessId TClientInfo::ProcessId() const |
|
44 { |
|
45 return iProcessId; |
|
46 } |
|
47 |
|
48 EXPORT_C RMessage2& TClientInfo::Message() |
|
49 { |
|
50 return iMessage; |
|
51 } |
|
52 |
|
53 EXPORT_C const RMessage2& TClientInfo::Message() const |
|
54 { |
|
55 return iMessage; |
|
56 } |
|
57 |
|
58 EXPORT_C TSecureId& TClientInfo::SecureId() |
|
59 { |
|
60 return iSecureId; |
|
61 } |
|
62 |
|
63 EXPORT_C TSecureId TClientInfo::SecureId() const |
|
64 { |
|
65 return iSecureId; |
|
66 } |