equal
deleted
inserted
replaced
|
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: |
|
15 * |
|
16 */ |
|
17 |
|
18 #if !defined(__AKNLIB_H__) |
|
19 #define __AKNLIB_H__ |
|
20 |
|
21 #if !defined(__E32BASE_H__) |
|
22 #include <e32base.h> |
|
23 #endif |
|
24 |
|
25 #if !defined(__EIKLIBRY_H__) |
|
26 #include <eiklibry.h> |
|
27 #endif |
|
28 |
|
29 #if !defined(__AKNPANIC_H__) |
|
30 #include <AknPanic.h> |
|
31 #endif |
|
32 |
|
33 class CAknLibrary : public CBase |
|
34 { |
|
35 public: |
|
36 |
|
37 IMPORT_C static TFileName ResourceFile(); |
|
38 IMPORT_C static TFileName PrivateResourceFile(); |
|
39 IMPORT_C static TCreateByTypeFunction ControlFactory(); |
|
40 public: |
|
41 static SEikControlInfo CreateByTypeL(TInt aControlType); |
|
42 private: |
|
43 CAknLibrary(); |
|
44 }; |
|
45 |
|
46 #endif |