phonesrv_plat/converged_call_engine_api/inc/mccecscall.h
branchRCL_3
changeset 20 987c9837762f
parent 19 7d48bed6ce0c
equal deleted inserted replaced
19:7d48bed6ce0c 20:987c9837762f
    22 //  INCLUDES
    22 //  INCLUDES
    23 #include <e32base.h>
    23 #include <e32base.h>
    24 #include <mccecall.h>
    24 #include <mccecall.h>
    25 
    25 
    26 // creates dependency ....
    26 // creates dependency ....
    27 // commented 3105 will be removed later #include <rmmcustomapi.h> 
    27 // commented 3105 will be removed later #include <RMmCustomAPI.h>
    28 
    28 
    29 /**
    29 /**
    30 * Methods used only with CS Call.
    30 * Methods used only with CS Call.
    31 *
    31 *
    32 *  @since S60 3.2
    32 *  @since S60 3.2
    33 */
    33 */
    34 class MCCECSCall
    34 class MCCECSCall
    35     {
    35 	{
    36 public:
    36 public:
    37 
    37 
    38     /**
    38 	/**
    39     * Switch in the alternating call mode of an alternating call
    39 	* Switch in the alternating call mode of an alternating call
    40     * @since S60 3.2
    40 	* @since S60 3.2
    41     * @param none
    41     * @param none
    42     * @return none  
    42     * @return none	
    43     */
    43 	*/
    44     virtual TInt SwitchAlternatingCall() = 0;
    44 	virtual TInt SwitchAlternatingCall() = 0;
    45 
    45 
    46     /**
    46 	/**
    47     * Gets the calls data call capabilities
    47 	* Gets the calls data call capabilities
    48     * @since S60 3.2
    48 	* @since S60 3.2
    49     * @param aCaps TMobileCallDataCapsV1
    49 	* @param aCaps TMobileCallDataCapsV1
    50     * @return KErrNone if the function member was successful, 
    50 	* @return KErrNone if the function member was successful, 
    51     * @return KErrNotSupported if call does not support circuit switched data, 
    51 	* @return KErrNotSupported if call does not support circuit switched data, 
    52     * @return KErrNotFound if this call is not a data call
    52 	* @return KErrNotFound if this call is not a data call
    53     */
    53 	*/
    54     virtual TInt GetMobileDataCallCaps( TDes8& aCaps ) const = 0;
    54 	virtual TInt GetMobileDataCallCaps( TDes8& aCaps ) const = 0;
    55     
    55 	
    56     /**
    56 	/**
    57     * Instruct to do no FDN checking when dialling.
    57 	* Instruct to do no FDN checking when dialling.
    58     * Needs to be called before every dial for each call separately.
    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. 
    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.
    60 	* Value will be reset to default when call goes back to disconnected state.
    61     * @since S60 v3.2
    61 	* @since S60 v3.2
    62     * @param none
    62 	* @param none
    63     * @return none
    63 	* @return none
    64     */
    64 	*/
    65     virtual void NoFDNCheck() = 0;
    65 	virtual void NoFDNCheck() = 0;
    66 
    66 
    67     /**
    67     /**
    68     * Log dialed  number. SAT related, check if dialed number is to be logged or not.
    68     * Log dialed  number. SAT related, check if dialed number is to be logged or not.
    69     * @since S60 3.2
    69     * @since S60 3.2
    70     * @param None
    70     * @param None
    71     * @return Log dialed number or not.
    71     * @return Log dialed number or not.
    72     */
    72     */
    73     virtual TBool LogDialedNumber() const = 0;
    73     virtual TBool LogDialedNumber() const = 0;
    74     
    74 	
    75     };
    75 	};
    76 
    76 
    77 
    77 
    78 #endif //CCECSCALL_H
    78 #endif //CCECSCALL_H