|
1 /* |
|
2 * Copyright (c) 2006-2008 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: Implements MSIPProfileRegistryObserver interface. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 // INCLUDE FILES |
|
20 #include "CSIPProfileRegistryObserver.h" |
|
21 |
|
22 // --------------------------------------------------------------------------- |
|
23 // CSIPProfileRegistryObserver::CSIPProfileRegistryObserver(); |
|
24 // --------------------------------------------------------------------------- |
|
25 // |
|
26 CSIPProfileRegistryObserver::CSIPProfileRegistryObserver() |
|
27 { |
|
28 } |
|
29 |
|
30 // --------------------------------------------------------------------------- |
|
31 // CSIPProfileRegistryObserver::ConstructL() |
|
32 // --------------------------------------------------------------------------- |
|
33 // |
|
34 void CSIPProfileRegistryObserver::ConstructL() |
|
35 { |
|
36 } |
|
37 |
|
38 // --------------------------------------------------------------------------- |
|
39 // CSIPProfileRegistryObserver::NewLC |
|
40 // --------------------------------------------------------------------------- |
|
41 // |
|
42 CSIPProfileRegistryObserver* CSIPProfileRegistryObserver::NewLC() |
|
43 { |
|
44 CSIPProfileRegistryObserver* self = |
|
45 new ( ELeave ) CSIPProfileRegistryObserver(); |
|
46 CleanupStack::PushL( self ); |
|
47 return self; |
|
48 } |
|
49 |
|
50 // --------------------------------------------------------------------------- |
|
51 // CSIPProfileRegistryObserver::NewL |
|
52 // --------------------------------------------------------------------------- |
|
53 // |
|
54 CSIPProfileRegistryObserver* CSIPProfileRegistryObserver::NewL() |
|
55 { |
|
56 CSIPProfileRegistryObserver* self = |
|
57 new ( ELeave ) CSIPProfileRegistryObserver(); |
|
58 CleanupStack::PushL( self ); |
|
59 CleanupStack::Pop( self ); |
|
60 return self; |
|
61 } |
|
62 |
|
63 // --------------------------------------------------------------------------- |
|
64 // CSIPProfileRegistryObserver::~CSIPProfileRegistryObserver |
|
65 // --------------------------------------------------------------------------- |
|
66 // |
|
67 CSIPProfileRegistryObserver::~CSIPProfileRegistryObserver() |
|
68 { |
|
69 } |
|
70 |
|
71 // --------------------------------------------------------------------------- |
|
72 // CSIPProfileRegistryObserver::ProfileRegistryEventOccurred. |
|
73 // --------------------------------------------------------------------------- |
|
74 // |
|
75 void CSIPProfileRegistryObserver::ProfileRegistryEventOccurred( TUint32 |
|
76 /*aProfileId*/, TEvent /*aEvent*/ ) |
|
77 { |
|
78 } |
|
79 // --------------------------------------------------------------------------- |
|
80 // CSIPProfileRegistryObserver::ProfileRegistryEventOccurred. |
|
81 // --------------------------------------------------------------------------- |
|
82 // |
|
83 void CSIPProfileRegistryObserver::ProfileRegistryErrorOccurred( TUint32 |
|
84 /*aProfileId*/, TInt /*aError*/ ) |
|
85 { |
|
86 } |
|
87 |
|
88 // End of File |