phoneapp/phoneuiqtviewadapter/tsrc/ut_phonevisibilityhandler/cphonepubsubproxy_stub.cpp
equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2010 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 * |
|
16 */ |
|
17 |
|
18 #include "cphonepubsubproxy.h" |
|
19 |
|
20 |
|
21 |
|
22 CPhonePubSubProxy* CPhonePubSubProxy::Instance() |
|
23 { |
|
24 static CPhonePubSubProxy p; |
|
25 return &p; |
|
26 } |
|
27 |
|
28 CPhonePubSubProxy::~CPhonePubSubProxy() |
|
29 { |
|
30 |
|
31 } |
|
32 |
|
33 void CPhonePubSubProxy::CancelAllNotifications( |
|
34 MPhonePubSubObserver* aObserver ) |
|
35 { |
|
36 |
|
37 } |
|
38 |
|
39 TInt CPhonePubSubProxy::Value( const TUid& aCategory, const TUint aKey ) |
|
40 { |
|
41 |
|
42 } |
|
43 |
|
44 void CPhonePubSubProxy::NotifyChangeL( |
|
45 const TUid& aCategory, |
|
46 const TUint aKey, |
|
47 MPhonePubSubObserver* aObserver ) |
|
48 { |
|
49 |
|
50 } |
|
51 |
|
52 void CPhonePubSubProxy::ChangePropertyValue( |
|
53 const TUid& aCategory, |
|
54 const TUint aKey, |
|
55 const TInt aValue ) |
|
56 { |
|
57 |
|
58 } |
|
59 |
|
60 CPhonePubSubProxy::CPhonePubSubProxy() |
|
61 { |
|
62 |
|
63 } |
|
64 |
|
65 void CPhonePubSubProxy::CancelAllObserverNotifies( |
|
66 MPhonePubSubObserver* aObserver ) |
|
67 { |
|
68 |
|
69 } |
|
70 |
|
71 void CPhonePubSubProxy::HandlePropertyChangedL( |
|
72 const TUid& aCategory, |
|
73 const TUint aKey, |
|
74 const TInt aValue ) |
|
75 { |
|
76 |
|
77 } |
|
78 |