sysstatemgmt/systemstateplugins/adptplugin/inc/rtcadaptationref.h
changeset 0 4e1aa6a622a0
child 41 c87e5f80c17d
equal deleted inserted replaced
-1:000000000000 0:4e1aa6a622a0
       
     1 // Copyright (c) 2007-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 // rtcadaptation.h
       
    15 // 
       
    16 //
       
    17 
       
    18 #ifndef __RTCADAPTATION_H__
       
    19 #define __RTCADAPTATION_H__
       
    20 
       
    21 #include <ssm/ssmadaptation.h>
       
    22 
       
    23 // C Class
       
    24 class CRtcAdaptationRef : public CBase, public MRtcAdaptation
       
    25 	{
       
    26 public:
       
    27 	static CRtcAdaptationRef* NewL();
       
    28 	~CRtcAdaptationRef();
       
    29 
       
    30 	//from MRtcAdaptation
       
    31 	void Release();
       
    32 
       
    33 	void ValidateRtc(TDes8& aValidityPckg, TRequestStatus& aStatus);
       
    34 	void SetWakeupAlarm(TDesC8& aAlarmTimePckg, TRequestStatus& aStatus);
       
    35 	void UnsetWakeupAlarm(TRequestStatus& aStatus);
       
    36 	void Cancel();
       
    37 
       
    38 private:
       
    39 	CRtcAdaptationRef();
       
    40 	};
       
    41 
       
    42 #endif // __RTCADAPTATION_H__