Update contrib.
2 * Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
20 #ifndef FEATMGRTIMER_H
21 #define FEATMGRTIMER_H
27 * An interface for handling timer expiration events.
29 NONSHARABLE_CLASS(MFeatMgrTimerCallback)
33 * Called when the timer fires
35 virtual void TimerFired() = 0;
39 * Timer class for supervising Genericting time.
41 NONSHARABLE_CLASS(CFeatMgrTimer) : public CTimer
43 public: // Constructors and destructor
46 * Two-phased constructor.
48 * @param aCallback Callback object for informing timer firing
50 static CFeatMgrTimer* NewL( MFeatMgrTimerCallback& aCallback );
58 public: // From base classes
68 * @param aCallback Callback object for informing timer firing
70 CFeatMgrTimer( MFeatMgrTimerCallback& aCallback );
75 * By default Symbian 2nd phase constructor is private.
82 * @param aInterval timer will expire after this duration.
84 void Set( const TTimeIntervalMicroSeconds32& aInterval );
87 MFeatMgrTimerCallback& iCallback; // Callback for timer fired messages. Not owned.
90 #endif // FEATMGRTIMER_H