2 * Copyright (c) 2002 Nokia Corporation and/or its subsidiary(-ies).
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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
14 * Description: Inline file for AknIconUtils.h
20 inline TAknContentDimensions::TAknContentDimensions():
25 inline TAknContentDimensions::TAknContentDimensions(TReal32 aWidth, TReal32 aHeight):
26 iWidth(aWidth),iHeight(aHeight)
30 inline void TAknContentDimensions::SetDimensions(TReal32 aWidth, TReal32 aHeight)
36 inline void TAknContentDimensions::SetDimensions(const TSize& aDimensions)
38 iWidth = aDimensions.iWidth;
39 iHeight = aDimensions.iHeight;