diff -r 000000000000 -r 4e1aa6a622a0 sysstatemgmt/systemstatereferenceplugins/clayer/inc/saaemergencycallrfadaptation.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sysstatemgmt/systemstatereferenceplugins/clayer/inc/saaemergencycallrfadaptation.h Tue Feb 02 00:53:00 2010 +0200 @@ -0,0 +1,55 @@ +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). +// All rights reserved. +// This component and the accompanying materials are made available +// under the terms of "Eclipse Public License v1.0" +// which accompanies this distribution, and is available +// at the URL "http://www.eclipse.org/legal/epl-v10.html". +// +// Initial Contributors: +// Nokia Corporation - initial contribution. +// +// Contributors: +// +// Description: +// + +#ifndef __SAAEMERGENCYCALLRFADAPTATION_H__ +#define __SAAEMERGENCYCALLRFADAPTATION_H__ + +#include +#include "adaptationbase.h" + +class CStartupAdaptationAdapter; + +/* + * Provides a concrete class to provide the appropriate adaptation interface + * + * @internalComponent + */ +NONSHARABLE_CLASS(CSaaEmergencyCallRfAdaptation) : public CAdaptationBase, public MEmergencyCallRfAdaptation + { +public: + static CSaaEmergencyCallRfAdaptation* NewL(CStartupAdaptationAdapter* aAdapter); + ~CSaaEmergencyCallRfAdaptation(); + +public: + //from MEmergencyCallRfAdaptation + virtual void Release(); + + virtual void ActivateRfForEmergencyCall(TRequestStatus& aStatus); + virtual void DeactivateRfForEmergencyCall(TRequestStatus& aStatus); + + virtual void Cancel(); + + //from CAdaptationBase + virtual void RequestComplete(const StartupAdaptation::TCommand aCommandId, TDesC8& aRetPckg); + virtual TDesC8* ParameterPckg(); + +private: + CSaaEmergencyCallRfAdaptation(CStartupAdaptationAdapter* aAdapter); + +private: + TBuf8<1> iNullBuf; +}; + +#endif // __SAAEMERGENCYCALLRFADAPTATION_H__