|
1 /* |
|
2 * Copyright (c) 2002-2009 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 // ============================ MEMBER FUNCTIONS ============================= |
|
23 |
|
24 // --------------------------------------------------------------------------- |
|
25 // CSIPProfileRegistryObserver::CSIPProfileRegistryObserver() |
|
26 // C++ default constructor can NOT contain any code, that |
|
27 // might leave. |
|
28 // --------------------------------------------------------------------------- |
|
29 CSIPProfileRegistryObserver::CSIPProfileRegistryObserver() |
|
30 { |
|
31 } |
|
32 |
|
33 // --------------------------------------------------------------------------- |
|
34 // CSIPProfileRegistryObserver::ConstructL() |
|
35 // Symbian 2nd phase constructor can leave. |
|
36 // --------------------------------------------------------------------------- |
|
37 //lint -e{1762} ConstructL is not const |
|
38 void CSIPProfileRegistryObserver::ConstructL() |
|
39 { |
|
40 } |
|
41 |
|
42 CSIPProfileRegistryObserver* CSIPProfileRegistryObserver::NewLC() |
|
43 { |
|
44 CSIPProfileRegistryObserver* self = |
|
45 new ( ELeave ) CSIPProfileRegistryObserver(); |
|
46 CleanupStack::PushL( self ); |
|
47 self->ConstructL(); |
|
48 return self; |
|
49 } |
|
50 |
|
51 CSIPProfileRegistryObserver* CSIPProfileRegistryObserver::NewL() |
|
52 { |
|
53 CSIPProfileRegistryObserver* self = |
|
54 new ( ELeave ) CSIPProfileRegistryObserver(); |
|
55 CleanupStack::PushL( self ); |
|
56 self->ConstructL(); |
|
57 CleanupStack::Pop( self ); |
|
58 return self; |
|
59 } |
|
60 |
|
61 // --------------------------------------------------------------------------- |
|
62 // Destructor. |
|
63 // --------------------------------------------------------------------------- |
|
64 CSIPProfileRegistryObserver::~CSIPProfileRegistryObserver() |
|
65 { |
|
66 } |
|
67 |
|
68 // --------------------------------------------------------------------------- |
|
69 // CSIPProfileRegistryObserver::ProfileRegistryEventOccurred. |
|
70 // --------------------------------------------------------------------------- |
|
71 void CSIPProfileRegistryObserver::ProfileRegistryEventOccurred( TUint32 |
|
72 /*aProfileId*/, TEvent /*aEvent*/ ) |
|
73 { |
|
74 } |
|
75 // --------------------------------------------------------------------------- |
|
76 // CSIPProfileRegistryObserver::ProfileRegistryEventOccurred. |
|
77 // --------------------------------------------------------------------------- |
|
78 void CSIPProfileRegistryObserver::ProfileRegistryErrorOccurred( TUint32 |
|
79 /*aProfileId*/, TInt /*aError*/ ) |
|
80 { |
|
81 } |
|
82 |
|
83 // End of File |