fep/frontendprocessor/include/FEPBPRIV.H
changeset 0 eb1f2e154e89
equal deleted inserted replaced
-1:000000000000 0:eb1f2e154e89
       
     1 // Copyright (c) 1997-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 //
       
    15 
       
    16 #ifndef __FEPBPRIV_H__
       
    17 #define __FEPBPRIV_H__
       
    18 
       
    19 #include <e32base.h>
       
    20 #include <coemain.h>	// class CCoeEnv
       
    21 
       
    22 const TUint KUidFepSpecificSettingsRepository=0x10009793;
       
    23 
       
    24 class MFepAttributeStorer;
       
    25 class CRepository;
       
    26 
       
    27 /** 
       
    28 @internalComponent
       
    29 */
       
    30 NONSHARABLE_CLASS(CFepSettingsTracker) : public CActive
       
    31 	{
       
    32 public:
       
    33 	static CFepSettingsTracker* NewL(CCoeEnv& aConeEnvironment, MFepAttributeStorer& aFepAttributeStorer);
       
    34 	virtual ~CFepSettingsTracker();
       
    35 private:
       
    36 	CFepSettingsTracker(CCoeEnv& aConeEnvironment, MFepAttributeStorer& aFepAttributeStorer);
       
    37 	void ConstructL();
       
    38 	void Queue();
       
    39 	// from CActive
       
    40 	virtual void DoCancel();
       
    41 	virtual void RunL();
       
    42 private:
       
    43 	CCoeEnv& iConeEnvironment;
       
    44 	MFepAttributeStorer& iFepAttributeStorer;
       
    45 	CRepository* iRepository;
       
    46 	};
       
    47 
       
    48 
       
    49 #endif // __FEPBPRIV_H__