Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
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 the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
19 @file CSecurityPolicy.inl
20 @warning : This file contains Rose Model ID comments - please do not delete
23 #ifndef __CSECURITYPOLICY_INL__
24 #define __CSECURITYPOLICY_INL__
27 inline CSecurityPolicy* CSecurityPolicy::NewL(RStringPool aStringPool)
29 _LIT8(KDataTypeName, "security-policy");
31 // CSecurityPolicy ECOM Interface UID = 101F4485
32 const TUid KUidSecPolInterface = {0x101F4485};
34 // Set up the parameters which allow ECOM's resolver to pick the right implementation
35 TEComResolverParams resParams;
36 resParams.SetDataType(KDataTypeName());
38 // Get the instantiation. Allow ECOM to use the default resolver. Pass in the init params.
39 TAny* ptr = REComSession::CreateImplementationL(KUidSecPolInterface,
40 _FOFF(CSecurityPolicy, iDtor_ID_Key),
44 return REINTERPRET_CAST(CSecurityPolicy*, ptr);
47 inline CSecurityPolicy::~CSecurityPolicy()
49 REComSession::DestroyedImplementation(iDtor_ID_Key);
52 inline CSecurityPolicy::CSecurityPolicy(RStringPool aStrPool)
59 inline void CSecurityPolicy::Reserved1()
61 inline void CSecurityPolicy::Reserved2()
65 #endif // __CSECURITYPOLICY_INL__