cellularsrvapitest/telephonydevsoundhaitest/etelmm/inc/T_RTelServerData.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_RTELSERVER_DATA_H
       
    20 #define T_RTELSERVER_DATA_H
       
    21 
       
    22 #include "DataWrapperBase.h"
       
    23 // For ETel API.
       
    24 #include <etel.h>
       
    25 // For ETel API.
       
    26 #include <etelmm.h>
       
    27 
       
    28 class CT_RTelServerData : public CDataWrapperBase
       
    29 	{
       
    30 public:
       
    31 	~CT_RTelServerData();
       
    32 	static	CT_RTelServerData* NewL();
       
    33 
       
    34 	virtual TAny*	GetObject();
       
    35 	virtual TBool	DoCommandL(const TTEFFunction& aCommand, const TTEFSectionName& aSection, const TInt aAsyncErrorIndex);
       
    36 
       
    37 protected:
       
    38 	CT_RTelServerData();
       
    39 	void ConstructL();
       
    40 
       
    41 private:
       
    42 	//== Mobile Line functions
       
    43 	void DoCmdConnect();
       
    44 	void DoCmdClose();
       
    45 	
       
    46 private:
       
    47 	/**
       
    48 	 * Telephony server
       
    49 	 */
       
    50 	RTelServer *iTelServer; //Wrapped object
       
    51 
       
    52 	};
       
    53 
       
    54 #endif // T_RTELSERVER_DATA_H
       
    55