equal
deleted
inserted
replaced
|
1 // Copyright (c) 1997-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 /**@file |
|
17 @internalAll */ |
|
18 #ifndef __DBAD_H |
|
19 #define __DBAD_H |
|
20 |
|
21 #include <e32base.h> |
|
22 #include "ET_PHONE.H" |
|
23 #include "ACQUIRE.H" |
|
24 |
|
25 // |
|
26 // CPhoneFactoryBad object |
|
27 // |
|
28 class CLibUnloader; |
|
29 class CPhoneFactoryBad: public CPhoneFactoryBase |
|
30 /** |
|
31 @internalComponent |
|
32 */ |
|
33 { |
|
34 public: |
|
35 CPhoneFactoryBad(); |
|
36 ~CPhoneFactoryBad(); |
|
37 virtual TInt GetPhoneInfo(const TInt aIndex, RTelServer::TPhoneInfo& aPhoneFactoryBaseInfo); |
|
38 virtual TInt EnumeratePhones(); |
|
39 virtual CPhoneBase* NewPhoneL(const TDesC& aName); |
|
40 virtual TBool IsSupported(const TInt aMixin); |
|
41 }; |
|
42 |
|
43 #endif |