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 // AKNANIMDLL.H |
|
19 // |
|
20 // Copyright (c) 1997-2000 Symbian Ltd. All rights reserved. |
|
21 // |
|
22 |
|
23 // Avkon Anim Dll Factory |
|
24 |
|
25 |
|
26 #if !defined(__AKNANIMDLL_H__) |
|
27 #define __AKNANIMDLL_H__ |
|
28 |
|
29 // INCLUDES |
|
30 |
|
31 #include <e32std.h> |
|
32 #include <e32base.h> |
|
33 #include <w32std.h> |
|
34 #include <w32adll.h> |
|
35 |
|
36 // CLASS DECLARATION |
|
37 |
|
38 /** |
|
39 * AVKON animation plugin. |
|
40 */ |
|
41 class CAknAnimDll : public CAnimDll |
|
42 { |
|
43 public: // Functions from base classes |
|
44 |
|
45 /** |
|
46 * From CAnimDll, creates new instance. |
|
47 * @param aType type of instance to be created. |
|
48 * @return new instance. |
|
49 */ |
|
50 virtual CAnim* CreateInstanceL( TInt aType ); |
|
51 |
|
52 }; |
|
53 |
|
54 /** |
|
55 * Creates window server animation plug-in. |
|
56 * @return animation plug-in. |
|
57 */ |
|
58 IMPORT_C CAnimDll* CreateCAnimDllL(); |
|
59 |
|
60 #endif |
|
61 |
|
62 // End of File |