svgt_plat/svgt_api/inc/svgtbitmap.inl
branchRCL_3
changeset 17 db5c883ad1c5
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/svgt_plat/svgt_api/inc/svgtbitmap.inl	Tue Aug 31 16:06:58 2010 +0300
@@ -0,0 +1,44 @@
+/*
+* Copyright (c) 2003 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+ * Description:  SVGTbitmap header file
+ *
+*/
+
+inline CSvgtBitmap::CSvgtBitmap( TInt8* aBitmapBuffer, TSize aBitmapSize,
+                        TDisplayMode aDisplayMode, TInt aStride):iBitmapBuffer(aBitmapBuffer),
+                                iBitmapSize(aBitmapSize),
+                                iDisplayMode(aDisplayMode),
+                                iStride(aStride)
+    {
+    }
+
+inline TInt8* CSvgtBitmap::BitmapBuffer() const
+    {
+    return iBitmapBuffer;
+    }
+        
+inline TSize CSvgtBitmap::SizeInPixels() const
+    {
+    return iBitmapSize;
+    }
+        
+inline TDisplayMode CSvgtBitmap::DisplayMode() const
+    {
+    return iDisplayMode;
+    }
+    
+inline TInt CSvgtBitmap::Stride() const
+    {
+    return iStride;
+    }