sysstatemgmt/systemstateplugins/conditionevaluator/inc/cndsystemwideproperty.h
changeset 0 4e1aa6a622a0
equal deleted inserted replaced
-1:000000000000 0:4e1aa6a622a0
       
     1 // Copyright (c) 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".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // This header file is used to evaluate the condition on SwP
       
    15 // 
       
    16 //
       
    17 
       
    18 #ifndef __CNDSYSTEMWIDEPROPERTY_H__
       
    19 #define __CNDSYSTEMWIDEPROPERTY_H__
       
    20 
       
    21 #include "conditionevaluatebase.h"
       
    22 
       
    23 class CCndSwp : public CConditionEvaluateBase
       
    24 	{
       
    25 public:
       
    26 	~CCndSwp();
       
    27 	static CCndSwp* NewL(const TConditionCheckType aConditionCheckType,
       
    28 									const TUint aKey, const TInt aCndValue);
       
    29 	virtual TBool EvaluateL() const;
       
    30 
       
    31 private:
       
    32 
       
    33 	CCndSwp(const TConditionCheckType aConditionCheckType,
       
    34 	        			const TUint aKey, const TInt aCndValue);
       
    35 
       
    36 private:
       
    37 	TConditionCheckType iConditionCheckType;
       
    38     TUint iKey;
       
    39     TInt iCndValue;
       
    40 	}; // class CCndSwp
       
    41 
       
    42 #endif // __CNDSYSTEMWIDEPROPERTY_H__