Update contrib.
2 * Copyright (c) 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.
19 #ifndef __TIMERCLIENT_H__
20 #define __TIMERCLIENT_H__
22 #include <e32std.h> //RSessionBase
23 #include <e32def.h> //Varargs
25 class RTimerSession : public RSessionBase
28 RTimerSession():iIsConnected(EFalse)
29 {iLock.CreateLocal();}
30 TInt Connect(RServer2 aServer);
31 TInt DeleteTimer(const TInt);
32 TInt OnDemandConnect(RServer2 aServer);
33 TInt SetTime(const TInt);
34 void ResetConnectionFlag()
36 iIsConnected = EFalse;
51 #endif //__TIMERCLIENT_H__