equal
deleted
inserted
replaced
|
1 // Copyright (c) 2001-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". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // inline implementation for the Codec Body classes |
|
15 // |
|
16 // |
|
17 |
|
18 #ifndef __CImageCodecBody_inl |
|
19 #define __CImageCodecBody_inl |
|
20 |
|
21 // CImageProcessorReadCodecBody |
|
22 |
|
23 inline CImageProcessor* CImageProcessorReadCodecBody::ImageProcessor() const |
|
24 { |
|
25 return iImageProc; |
|
26 } |
|
27 |
|
28 inline const TPoint& CImageProcessorReadCodecBody::Pos() const |
|
29 { |
|
30 return iPos; |
|
31 } |
|
32 |
|
33 inline TPoint& CImageProcessorReadCodecBody::Pos() |
|
34 { |
|
35 return iPos; |
|
36 } |
|
37 |
|
38 inline void CImageProcessorReadCodecBody::SetPos(const TPoint& aPos) |
|
39 { |
|
40 iPos = aPos; |
|
41 } |
|
42 |
|
43 // CImageMaskProcessorReadCodecBody |
|
44 |
|
45 inline CImageProcessor* CImageMaskProcessorReadCodecBody::MaskProcessor() const |
|
46 { |
|
47 return iMaskProc; |
|
48 } |
|
49 |
|
50 #endif // __CImageCodecBody_inl |