Update contrib.
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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 // Started by BLB, October 1996
17 #if !defined(__BACNTF_H__)
23 class CEnvironmentChangeNotifier : public CActive
24 /** Environment change notifier. This is an active object and can be used to handle
25 environment change events.
31 IMPORT_C static CEnvironmentChangeNotifier* NewL(TInt aPriority,const TCallBack& aCallBack);
32 IMPORT_C ~CEnvironmentChangeNotifier();
33 IMPORT_C void Start();
34 IMPORT_C TInt Set(const TCallBack& aCallBack);
35 inline TInt Change() const;
37 inline CEnvironmentChangeNotifier(TInt aPriority);
43 RChangeNotifier iChangeNotifier;
48 inline TInt CEnvironmentChangeNotifier::Change() const
49 /** Returns the last set of change events.
51 If the last outstanding request completed normally, the function returns a
52 bit pattern where each bit value corresponds to one of the enumerators defined
53 by TChanges. A set bit indicates that the corresponding change event occurred.
55 For example, if the bit value TChanges::EChangesMidnightCrossover is set,
56 then the system time has passed midnight.
58 @return A set of bits consisting of one or more of the values defined by TChanges,
59 or KErrCancel if the last outstanding request was cancelled.