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 #if !defined (__CTELBEARER_H__) |
|
17 #define __CTELBEARER_H__ |
|
18 |
|
19 #include <comms-infras/cbearerbase.h> |
|
20 |
|
21 class CTelBearer : public CBearerBase |
|
22 { |
|
23 public: |
|
24 virtual ~CTelBearer(); |
|
25 static CTelBearer* NewLC(MBearerObserver* aObserver); |
|
26 static CTelBearer* NewL(MBearerObserver* aObserver); |
|
27 |
|
28 // implementation of base class pure virtuals |
|
29 virtual TBool StartChecking(); |
|
30 virtual TBool StartChecking(TBool aIsReconnect); |
|
31 virtual TBool StopChecking(); |
|
32 virtual void Disconnect(); |
|
33 |
|
34 // override of base-class function |
|
35 TInt SecondPhaseAvailability(); |
|
36 |
|
37 protected: |
|
38 CTelBearer(MBearerObserver* aObserver); |
|
39 void ConstructL(); |
|
40 |
|
41 // implementation of base class pure virtual |
|
42 virtual void AssignSupportedBearerSet(); |
|
43 }; |
|
44 |
|
45 #endif //__CTELBEARER_H__ |
|
46 |