equal
deleted
inserted
replaced
|
1 // Copyright (c) 2002-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 #include "CTelBearer.h" |
|
17 |
|
18 CTelBearer* CTelBearer::NewL(MBearerObserver* aObserver) |
|
19 { |
|
20 CTelBearer* self = CTelBearer::NewLC(aObserver); |
|
21 CleanupStack::Pop(); // self |
|
22 return self; |
|
23 } |
|
24 |
|
25 CTelBearer* CTelBearer::NewLC(MBearerObserver* aObserver) |
|
26 { |
|
27 CTelBearer* self = new(ELeave) CTelBearer(aObserver); |
|
28 CleanupStack::PushL(self); |
|
29 self->ConstructL(); |
|
30 return self; |
|
31 } |
|
32 |
|
33 CTelBearer::CTelBearer(MBearerObserver* aObserver) |
|
34 :CBearerBase(aObserver) |
|
35 { |
|
36 } |
|
37 |
|
38 void CTelBearer::ConstructL() |
|
39 { |
|
40 } |
|
41 |
|
42 void CTelBearer::AssignSupportedBearerSet() |
|
43 { |
|
44 } |
|
45 |
|
46 CTelBearer::~CTelBearer() |
|
47 { |
|
48 } |
|
49 |
|
50 TBool CTelBearer::StartChecking() |
|
51 { |
|
52 |
|
53 return ETrue; |
|
54 } |
|
55 |
|
56 TBool CTelBearer::StartChecking(TBool) |
|
57 { |
|
58 |
|
59 return ETrue; |
|
60 } |
|
61 |
|
62 TBool CTelBearer::StopChecking() |
|
63 { |
|
64 |
|
65 return ETrue; |
|
66 } |
|
67 |
|
68 void CTelBearer::Disconnect() |
|
69 { |
|
70 } |
|
71 |
|
72 TInt CTelBearer::SecondPhaseAvailability() |
|
73 { |
|
74 |
|
75 return KErrNone; |
|
76 } |
|
77 |
|
78 |