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: CSvgtRegisteredBitmap class. |
|
15 * |
|
16 */ |
|
17 |
|
18 #ifndef SVGTREGISTEREDBITMAP_H |
|
19 #define SVGTREGISTEREDBITMAP_H |
|
20 #include <e32std.h> |
|
21 #include <fbs.h> |
|
22 #include <fbsrasterizer.h> |
|
23 /** Class for holding information about an extended bitmap registered with this rasterizer. |
|
24 */ |
|
25 NONSHARABLE_CLASS (CSvgtRegisteredBitmap) : public CFbsBitmap |
|
26 { |
|
27 public: |
|
28 |
|
29 CSvgtRegisteredBitmap(TInt64 aBitmapId); |
|
30 ~CSvgtRegisteredBitmap(); |
|
31 |
|
32 public: |
|
33 |
|
34 TInt64 iBitmapId; |
|
35 TDblQueLink iLink; |
|
36 /** The number of times the bitmap with the ID aBitmapId is currently registered with this |
|
37 rasterizer or zero for recently used bitmaps. |
|
38 */ |
|
39 TInt iRefCount; |
|
40 }; |
|
41 |
|
42 #endif |