wlanapitest/wlanhaitest/wlan/inc/T_RFileData.h
branchRCL_3
changeset 43 d3d7683d16f5
parent 0 c40eb8fe8501
equal deleted inserted replaced
42:a828660c511c 43:d3d7683d16f5
       
     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 
       
    20 
       
    21 #ifndef T_RFILEDATA_H_
       
    22 #define T_RFILEDATA_H_
       
    23 
       
    24 //User Includes
       
    25 #include "datawrapperbase.h"
       
    26 
       
    27 class CT_RFileData: public CDataWrapperBase
       
    28 	{
       
    29 public:
       
    30 	static CT_RFileData* NewL();
       
    31 	virtual ~CT_RFileData();
       
    32 
       
    33 public:	
       
    34 	virtual TAny* GetObject();
       
    35 	virtual TBool DoCommandL(const TTEFFunction& aCommand, const TTEFSectionName& aSection, const TInt aAsyncErrorIndex);			 
       
    36 
       
    37 protected:
       
    38 	CT_RFileData();
       
    39 	void ConstructL();
       
    40 
       
    41 private:
       
    42   	void DoCmdGenerateFile(const TTEFSectionName& aSection);
       
    43 
       
    44 private:
       
    45  	/**
       
    46  	 * For create a file
       
    47  	 */
       
    48  	RFile*		iFile;
       
    49 
       
    50     /**
       
    51      * Handle for file server session
       
    52      */
       
    53  	RFs			iFs;
       
    54 	};
       
    55 	
       
    56 #endif /*T_RFILEDATA_H_*/