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 // PHONEFAC.CPP |
|
15 // Phone Factory Class and DLL entry point |
|
16 // |
|
17 // |
|
18 |
|
19 /** |
|
20 @file |
|
21 @internalAll |
|
22 */ |
|
23 |
|
24 #ifndef __PHONEFAC_H__ |
|
25 #define __PHONEFAC_H__ |
|
26 |
|
27 #include "PHONE.H" |
|
28 |
|
29 // |
|
30 // CPhoneFactoryHayes object |
|
31 // |
|
32 |
|
33 class CLibUnloader; |
|
34 class CPhoneFactoryHayes: public CPhoneFactoryBase |
|
35 /** |
|
36 @internalComponent |
|
37 */ |
|
38 { |
|
39 public: |
|
40 CPhoneFactoryHayes(); |
|
41 ~CPhoneFactoryHayes(); |
|
42 virtual CPhoneBase* NewPhoneL(const TDesC& aName); |
|
43 virtual TInt EnumeratePhones(); |
|
44 virtual TInt GetPhoneInfo(const TInt aIndex, RTelServer::TPhoneInfo& aPhoneInfo); |
|
45 virtual TBool IsSupported(const TInt aMixin); |
|
46 }; |
|
47 |
|
48 #endif |