uiresources_pub/scalable_icons_api/inc/AknIconUtils.inl
author Simon Howkins <simonh@symbian.org>
Thu, 22 Apr 2010 17:50:50 +0100
branchRCL_3
changeset 44 14a1a9556453
parent 0 05e9090e2422
permissions -rw-r--r--
Added another $ so that turning on MBM output won't remove everything else from the lit of releaseables. Removed spaces so that, when variables are expanded at the start of a line, there's no space in the expansion, so make understands it!

/*
* Copyright (c) 2002 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:   Inline file for AknIconUtils.h
*
*/



inline TAknContentDimensions::TAknContentDimensions():
    iWidth(0),iHeight(0)
    {
    }

inline TAknContentDimensions::TAknContentDimensions(TReal32 aWidth, TReal32 aHeight):
    iWidth(aWidth),iHeight(aHeight)
    {
    }
  
inline void TAknContentDimensions::SetDimensions(TReal32 aWidth, TReal32 aHeight)
    {
    iWidth  = aWidth;
    iHeight = aHeight;
    }
    
inline void TAknContentDimensions::SetDimensions(const TSize& aDimensions)
    {
    iWidth  = aDimensions.iWidth;
    iHeight = aDimensions.iHeight;
    }
  
//  End of File