Update contrib.
1 // Copyright (c) 2004-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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // TPolicyDomainBuilder implementation
18 #include "SC_Policy.h"
24 The method sets the database policy to the related CPolicyDomain collection.
25 @param aDbPolicy A pointer to CDbPolicy instance, which has to be set to
26 the related CPolicyDomain collection. CPolicyDomain collection takes the
27 ownership on the supplied CDbPolicy instance.
28 @leave KErrAlreadyExists If the database policy was already set.
30 void TPolicyDomainBuilder::SetDbPolicyL(CDbPolicy* aDbPolicy)
33 if(iPolicyDomain.iDbPolicy)
35 __LEAVE(KErrAlreadyExists);
37 iPolicyDomain.iDbPolicy = aDbPolicy;
40 } //end of - namespace DBSC