phonesrv_plat/converged_call_engine_api/inc/mccecscall.h
changeset 0 ff3b6d0fd310
child 19 7d48bed6ce0c
equal deleted inserted replaced
-1:000000000000 0:ff3b6d0fd310
       
     1 /*
       
     2 * Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies). 
       
     3 * All rights reserved.
       
     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".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  CCE CS call class
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef MCCECSCALL_H
       
    20 #define MCCECSCALL_H
       
    21 
       
    22 //  INCLUDES
       
    23 #include <e32base.h>
       
    24 #include <mccecall.h>
       
    25 
       
    26 // creates dependency ....
       
    27 // commented 3105 will be removed later #include <RMmCustomAPI.h>
       
    28 
       
    29 /**
       
    30 * Methods used only with CS Call.
       
    31 *
       
    32 *  @since S60 3.2
       
    33 */
       
    34 class MCCECSCall
       
    35 	{
       
    36 public:
       
    37 
       
    38 	/**
       
    39 	* Switch in the alternating call mode of an alternating call
       
    40 	* @since S60 3.2
       
    41     * @param none
       
    42     * @return none	
       
    43 	*/
       
    44 	virtual TInt SwitchAlternatingCall() = 0;
       
    45 
       
    46 	/**
       
    47 	* Gets the calls data call capabilities
       
    48 	* @since S60 3.2
       
    49 	* @param aCaps TMobileCallDataCapsV1
       
    50 	* @return KErrNone if the function member was successful, 
       
    51 	* @return KErrNotSupported if call does not support circuit switched data, 
       
    52 	* @return KErrNotFound if this call is not a data call
       
    53 	*/
       
    54 	virtual TInt GetMobileDataCallCaps( TDes8& aCaps ) const = 0;
       
    55 	
       
    56 	/**
       
    57 	* Instruct to do no FDN checking when dialling.
       
    58 	* Needs to be called before every dial for each call separately.
       
    59 	* If this method is not called at all default is to use FDN. 
       
    60 	* Value will be reset to default when call goes back to disconnected state.
       
    61 	* @since S60 v3.2
       
    62 	* @param none
       
    63 	* @return none
       
    64 	*/
       
    65 	virtual void NoFDNCheck() = 0;
       
    66 
       
    67     /**
       
    68     * Log dialed  number. SAT related, check if dialed number is to be logged or not.
       
    69     * @since S60 3.2
       
    70     * @param None
       
    71     * @return Log dialed number or not.
       
    72     */
       
    73     virtual TBool LogDialedNumber() const = 0;
       
    74 	
       
    75 	};
       
    76 
       
    77 
       
    78 #endif //CCECSCALL_H