equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2007-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 the License "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 * @internalComponent |
|
16 * @released |
|
17 * |
|
18 */ |
|
19 |
|
20 |
|
21 #ifndef ROFSIMAGE_H |
|
22 #define ROFSIMAGE_H |
|
23 |
|
24 #include <e32std.h> |
|
25 #include "rofs.h" |
|
26 #include "r_obey.h" |
|
27 #include "r_coreimage.h" |
|
28 |
|
29 class RCoreImageReader; |
|
30 class TRofsHeader; |
|
31 class TExtensionRofsHeader; |
|
32 class CCoreImage; |
|
33 |
|
34 /** |
|
35 class RofsImage, Extension of core image |
|
36 |
|
37 @internalComponent |
|
38 @released |
|
39 */ |
|
40 class RofsImage : public CCoreImage |
|
41 { |
|
42 public: |
|
43 RofsImage(RCoreImageReader *aReader); |
|
44 ~RofsImage(void); |
|
45 int ProcessImage(void); |
|
46 |
|
47 TRofsHeader *iRofsHeader; |
|
48 TExtensionRofsHeader *iRofsExtnHeader; |
|
49 long iAdjustment; |
|
50 RCoreImageReader::TImageType iImageType; |
|
51 }; |
|
52 |
|
53 #endif //ROFSIMAGE_H |