equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2006-2009 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 |
|
19 |
|
20 #ifndef CONERESLOADER_H |
|
21 #define CONERESLOADER_H |
|
22 |
|
23 #include <e32std.h> |
|
24 |
|
25 class CCoeEnv; |
|
26 |
|
27 NONSHARABLE_CLASS(RConeResourceLoader) |
|
28 /** |
|
29 @deprecated |
|
30 @see RCoeResourceLoader |
|
31 @note For compatibility with S60 only |
|
32 */ |
|
33 { |
|
34 public: |
|
35 IMPORT_C RConeResourceLoader(CCoeEnv& aCoeEnv); |
|
36 IMPORT_C TInt Open(TFileName& aFileName); |
|
37 IMPORT_C void OpenL(TFileName& aFileName); |
|
38 IMPORT_C void Close(); |
|
39 private: |
|
40 // Dummy members to make this the same size as a RCoeResourceLoader so |
|
41 // in-place construction of the RCoeResourceLoader will work |
|
42 void* iDummy1; // was CCoeEnv& |
|
43 TInt iDummy2; // was TInt |
|
44 }; |
|
45 |
|
46 #endif // CONERESLOADER_H |
|
47 |