First public contribution.
1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #ifndef __FBSHELPER_H__
17 #define __FBSHELPER_H__
28 NONSHARABLE_CLASS(CFbsSessionHelper) : public CActive
31 CFbsSessionHelper(RFbsSession& aFbs);
33 TInt AddBitmap(CFbsBitmap& aBitmap);
34 void RemoveBitmap(CFbsBitmap& aBitmap);
35 inline CFbsRasterizer* Rasterizer() const;
43 RPointerArray<CFbsBitmap> iBitmaps;
45 RLibrary iRasterizerLib;
47 CFbsRasterizer* iRasterizer;
50 #ifdef SYMBIAN_DEBUG_FBS_LOCKHEAP
54 TInt iServerSessionHandle;
58 inline CFbsRasterizer* CFbsSessionHelper::Rasterizer() const
64 #endif // __FBSHELPER_H__