bluetoothapitest/bluetoothsvs/T_BTUserAPI/inc/T_SocketServData.h
changeset 0 29b1cd4cb562
equal deleted inserted replaced
-1:000000000000 0:29b1cd4cb562
       
     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 #if (!defined __T_SOCKET_SERV_DATA_H__)
       
    20 #define __T_SOCKET_SERV_DATA_H__
       
    21 	
       
    22 // User Includes
       
    23 #include "DataWrapperBase.h"
       
    24 
       
    25 // EPOC includes
       
    26 #include <bt_sock.h>
       
    27 #include <es_sock.h>
       
    28 
       
    29 class CT_SocketServData : public CDataWrapperBase
       
    30 	{
       
    31 public:
       
    32 	/**
       
    33 	* Public destructor
       
    34 	*/
       
    35 	~CT_SocketServData();
       
    36 	
       
    37 	/**
       
    38 	* Two phase constructor
       
    39 	*/
       
    40 	static CT_SocketServData*	NewL();
       
    41 
       
    42 	/**
       
    43 	* Process a command read from the ini file
       
    44 	*
       
    45 	* @param aCommand			The command to process
       
    46 	* @param aSection			The section in the ini containing data for the command
       
    47 	* @param aAsyncErrorIndex	Command index for async calls to return errors to
       
    48 	*
       
    49 	* @return					ETrue if the command is processed
       
    50 	*
       
    51 	* @leave					System wide error
       
    52 	*/
       
    53 	virtual TBool	DoCommandL(const TTEFFunction& aCommand, const TTEFSectionName& aSection, const TInt aAsyncErrorIndex);
       
    54 
       
    55 	/**
       
    56 	* Return a pointer to the object that the data wraps
       
    57 	*
       
    58 	* @return	pointer to the object that the data wraps
       
    59 	*/
       
    60 
       
    61 	virtual TAny*	GetObject();
       
    62 	/**
       
    63 	* Set the object that the data wraps
       
    64 	*
       
    65 	* @param	aObject object that the wrapper is testing
       
    66 	*
       
    67 	* @leave	KErrNotSupported if the the function is not supported
       
    68 	*/
       
    69 	virtual void	SetObjectL(TAny* aObject);
       
    70 
       
    71 	/**
       
    72 	* The object will no longer be owned by this
       
    73 	*
       
    74 	* @leave	KErrNotSupported if the the function is not supported
       
    75 	*/
       
    76 	virtual void	DisownObjectL();
       
    77 
       
    78 	inline virtual TCleanupOperation CleanupOperation();
       
    79 		
       
    80 protected:
       
    81 	CT_SocketServData();
       
    82 	void ConstructL();
       
    83 
       
    84 private:
       
    85 	void DestroyData();
       
    86 	
       
    87 	inline void	DoCmdRSocketServ();
       
    88 	inline void DoCmdConnect(const TDesC& aSection);
       
    89 	inline void DoCmdClose();
       
    90 	
       
    91 	static void CleanupOperation(TAny* aAny);
       
    92 
       
    93 private:
       
    94 	RSocketServ* iData;
       
    95 	};
       
    96 
       
    97 #endif /* __T_SOCKET_SERV_DATA_H__*/