First public contribution.
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 // CPassAllPolicy class
18 #ifndef __SC_PASSALLPOLICY_H__
19 #define __SC_PASSALLPOLICY_H__
21 #include <e32base.h> //CBase
22 #include "D32Security.h"
28 CPassAllPolicy class implements MPolicy interface.
29 It describes a "pass all" policy object and will be used for
30 non-secure and legacy databases.
33 NONSHARABLE_CLASS(CPassAllPolicy) : public CBase, public MPolicy
36 CPassAllPolicy(TPolicyObjType aPOType);
37 virtual ~CPassAllPolicy();
38 virtual TBool Check(const RMessage2&, TPolicyType) const;
39 virtual TInt Get(TPolicyType, TSecurityPolicy& aPolicy) const;
40 DECLARE_DB_DUMP2(aFile)
43 TPolicyObjType iPOType;
47 } //end of - namespace DBSC
49 #endif//__SC_PASSALLPOLICY_H__