epoc32/include/elements/metadata.inl
branchSymbian3
changeset 4 837f303aceeb
parent 3 e1b950c65cb4
     1.1 --- a/epoc32/include/elements/metadata.inl	Wed Mar 31 12:27:01 2010 +0100
     1.2 +++ b/epoc32/include/elements/metadata.inl	Wed Mar 31 12:33:34 2010 +0100
     1.3 @@ -1,53 +1,52 @@
     1.4 -/**
     1.5 -* Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.6 -* All rights reserved.
     1.7 -* This component and the accompanying materials are made available
     1.8 -* under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
     1.9 -* which accompanies this distribution, and is available
    1.10 -* at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
    1.11 -*
    1.12 -* Initial Contributors:
    1.13 -* Nokia Corporation - initial contribution.
    1.14 -*
    1.15 -* Contributors:
    1.16 -*
    1.17 -* Description:
    1.18 -*
    1.19 -*/
    1.20 -
    1.21 -
    1.22 -
    1.23 -
    1.24 +// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
    1.25 +// All rights reserved.
    1.26 +// This component and the accompanying materials are made available
    1.27 +// under the terms of "Eclipse Public License v1.0"
    1.28 +// which accompanies this distribution, and is available
    1.29 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.30 +//
    1.31 +// Initial Contributors:
    1.32 +// Nokia Corporation - initial contribution.
    1.33 +//
    1.34 +// Contributors:
    1.35 +//
    1.36 +// Description:
    1.37 +//
    1.38  
    1.39  /**
    1.40 - @file MetaData.inl
    1.41 + @file 
    1.42   @internalTechnology
    1.43  */
    1.44  
    1.45 -#ifndef __METADATA_INL__
    1.46 -#define __METADATA_INL__
    1.47 +#ifndef __E_METADATA_INL__
    1.48 +#define __E_METADATA_INL__
    1.49  
    1.50  namespace Meta
    1.51  {
    1.52  
    1.53  
    1.54 -STypeId::STypeId()
    1.55 +STypeId STypeId::CreateSTypeId()
    1.56  /**
    1.57   * Constructor
    1.58   */
    1.59  	{
    1.60 -	iUid.iUid = 0;
    1.61 -	iType = 0;
    1.62 +	STypeId id;
    1.63 +	id.iUid.iUid = 0;
    1.64 +	id.iType = 0;
    1.65 +	return id;
    1.66  	}
    1.67  
    1.68 -STypeId::STypeId(TUint32 aUid, TUint32 aTypeId)
    1.69 +STypeId STypeId::CreateSTypeId(TUint32 aUid, TUint32 aTypeId)
    1.70  /**
    1.71   * Constructor
    1.72   */
    1.73  	{
    1.74 -	iUid.iUid = aUid;
    1.75 -	iType = aTypeId;
    1.76 +	STypeId id;
    1.77 +	id.iUid.iUid = aUid;
    1.78 +	id.iType = aTypeId;
    1.79 +	return id;
    1.80  	}
    1.81  
    1.82  }	// namespace Meta
    1.83 -#endif	// __METADATA_INL__
    1.84 +#endif	// __E_METADATA_INL__
    1.85 +