sysstatemgmt/systemstateplugins/adptplugin/inc/emergencycallrfadaptationref.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 //
       
    15 
       
    16 #ifndef __EMERGENCYCALLRFADAPTATION_H__
       
    17 #define __EMERGENCYCALLRFADAPTATION_H__
       
    18 
       
    19 #include <ssm/ssmadaptation.h>
       
    20 
       
    21 /**
       
    22  Reference Emergency Call RF adaptation plug-in.
       
    23  Implements MEmergencyCallRfAdaptation to Activate and Deactivate RF for emergency calls.
       
    24 
       
    25  @internalComponent
       
    26  @released
       
    27 
       
    28  @see MEmergencyCallRfAdaptation
       
    29 */
       
    30 class CEmergencyCallRfAdaptationRef : public CBase, public MEmergencyCallRfAdaptation
       
    31 	{
       
    32 public:
       
    33 	static CEmergencyCallRfAdaptationRef* NewL();
       
    34 
       
    35 	//from MEmergencyCallRfAdaptation
       
    36 	void Release();
       
    37 	void ActivateRfForEmergencyCall(TRequestStatus& aStatus);
       
    38 	void DeactivateRfForEmergencyCall(TRequestStatus& aStatus);
       
    39 	void Cancel();
       
    40 
       
    41 private:
       
    42 	CEmergencyCallRfAdaptationRef();
       
    43 	~CEmergencyCallRfAdaptationRef();
       
    44 	};
       
    45 
       
    46 #endif // __EMERGENCYCALLRFADAPTATION_H__