cellularsrvapitest/telephonyhaitest/etelmm/inc/T_RMobileConferenceCallData.h
changeset 0 3553901f7fa8
child 24 6638e7f4bd8f
equal deleted inserted replaced
-1:000000000000 0:3553901f7fa8
       
     1 /*
       
     2 * Copyright (c) 2005-2009 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:
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef T_RMOBILECONFERENCECALL_DATA_H
       
    20 #define T_RMOBILECONFERENCECALL_DATA_H
       
    21 
       
    22 #include "datawrapperbase.h"
       
    23 // For ETel API.
       
    24 #include <etel.h>
       
    25 
       
    26 // For ETel API.
       
    27 #include <etelmm.h>
       
    28 
       
    29 class CT_RMobileConferenceCallData : public CDataWrapperBase
       
    30 	{
       
    31 public:
       
    32 	~CT_RMobileConferenceCallData();
       
    33 	static	CT_RMobileConferenceCallData*	NewL();
       
    34 
       
    35 	virtual TAny*	GetObject();
       
    36 	virtual TBool	DoCommandL(const TTEFFunction& aCommand, const TTEFSectionName& aSection, const TInt aAsyncErrorIndex);
       
    37 
       
    38 protected:
       
    39 	CT_RMobileConferenceCallData();
       
    40 	void	ConstructL();
       
    41 
       
    42 private:
       
    43 	void RunL(CActive* aActive, TInt aIndex); 
       
    44 
       
    45 	void DoCmdOpen(const TTEFFunction& aSection);
       
    46 	void DoCmdClose();
       
    47 	void DoCmdCreateConference(const TInt aAsyncErrorIndex);
       
    48 	void DoCmdEnumerateCalls(const TTEFFunction& aSection);
       
    49 
       
    50 private:
       
    51 	CActiveCallback* 	iActiveCallback;
       
    52 
       
    53 	/**
       
    54 	 * Mobile conference call interface to ETel.
       
    55 	 */
       
    56 	RMobileConferenceCall *iMobileConferenceCall;
       
    57 
       
    58 	};
       
    59 
       
    60 
       
    61 #endif // T_RMOBILECONFERENCECALL_DATA_H
       
    62 
       
    63