1 /* |
|
2 * Copyright (c) 2002 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: Ext Phone Base, dialing base class. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 // INCLUDE FILES |
|
21 #include "cphcltextphonebase.h" |
|
22 #include "cphcltextphone.h" |
|
23 #include "phclttypes.h" |
|
24 |
|
25 |
|
26 // ============================ MEMBER FUNCTIONS =============================== |
|
27 |
|
28 // ----------------------------------------------------------------------------- |
|
29 // CPhCltExtPhoneBase::NewL |
|
30 // Two-phased constructor. |
|
31 // ----------------------------------------------------------------------------- |
|
32 // |
|
33 EXPORT_C CPhCltExtPhoneBase* CPhCltExtPhoneBase::NewL( |
|
34 MPhCltExtPhoneObserver* aObserver ) |
|
35 { |
|
36 return CPhCltExtPhone::NewL( aObserver ); |
|
37 } |
|
38 |
|
39 |
|
40 // ----------------------------------------------------------------------------- |
|
41 // CPhCltExtPhoneBase::CPhCltExtPhoneBase |
|
42 // C++ constructor can NOT contain any code, that |
|
43 // might leave. |
|
44 // ----------------------------------------------------------------------------- |
|
45 // |
|
46 CPhCltExtPhoneBase::CPhCltExtPhoneBase( MPhCltExtPhoneObserver* aObserver ) |
|
47 : CActive( EPriorityStandard ), iObserver( aObserver ) |
|
48 { |
|
49 } |
|
50 |
|
51 |
|
52 |
|
53 |
|
54 // End of File |
|