equal
deleted
inserted
replaced
1 /* |
|
2 * Copyright (c) 2004 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: Implementation of the DialUtils factory interface. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef DIALUTILSFACTIMPL_H |
|
21 #define DIALUTILSFACTIMPL_H |
|
22 |
|
23 |
|
24 // INCLUDES |
|
25 #include <dialutils.h> |
|
26 |
|
27 |
|
28 /** |
|
29 * Implementation of the DialUtils factory. |
|
30 * |
|
31 * @lib DialUtils.lib |
|
32 * @since 2.6 |
|
33 */ |
|
34 class CDialUtilsFactImpl |
|
35 : public CDialUtilsFactory |
|
36 { |
|
37 public: |
|
38 |
|
39 /** |
|
40 * @see CDialUtilsFactory::CDialUtilsApiLD. |
|
41 */ |
|
42 CDialUtilsApi* CDialUtilsApiLD(); |
|
43 |
|
44 |
|
45 private: |
|
46 |
|
47 /* |
|
48 * Destructor |
|
49 */ |
|
50 ~CDialUtilsFactImpl(); |
|
51 }; |
|
52 |
|
53 |
|
54 #endif // DIALUTILSFACTIMPL_H |
|
55 |
|
56 |
|
57 // End of File |
|