phonesrv_plat/converged_call_engine_api/inc/mccecscall.h
author Pat Downey <patd@symbian.org>
Wed, 01 Sep 2010 12:15:03 +0100
branchRCL_3
changeset 20 987c9837762f
parent 19 7d48bed6ce0c
permissions -rw-r--r--
Revert incorrect RCL_3 drop: Revision: 201033 Kit: 201035

/*
* Copyright (c) 2006 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:  CCE CS call class
*
*/


#ifndef MCCECSCALL_H
#define MCCECSCALL_H

//  INCLUDES
#include <e32base.h>
#include <mccecall.h>

// creates dependency ....
// commented 3105 will be removed later #include <RMmCustomAPI.h>

/**
* Methods used only with CS Call.
*
*  @since S60 3.2
*/
class MCCECSCall
	{
public:

	/**
	* Switch in the alternating call mode of an alternating call
	* @since S60 3.2
    * @param none
    * @return none	
	*/
	virtual TInt SwitchAlternatingCall() = 0;

	/**
	* Gets the calls data call capabilities
	* @since S60 3.2
	* @param aCaps TMobileCallDataCapsV1
	* @return KErrNone if the function member was successful, 
	* @return KErrNotSupported if call does not support circuit switched data, 
	* @return KErrNotFound if this call is not a data call
	*/
	virtual TInt GetMobileDataCallCaps( TDes8& aCaps ) const = 0;
	
	/**
	* Instruct to do no FDN checking when dialling.
	* Needs to be called before every dial for each call separately.
	* If this method is not called at all default is to use FDN. 
	* Value will be reset to default when call goes back to disconnected state.
	* @since S60 v3.2
	* @param none
	* @return none
	*/
	virtual void NoFDNCheck() = 0;

    /**
    * Log dialed  number. SAT related, check if dialed number is to be logged or not.
    * @since S60 3.2
    * @param None
    * @return Log dialed number or not.
    */
    virtual TBool LogDialedNumber() const = 0;
	
	};


#endif //CCECSCALL_H