commsfwutils/commsbufs/TS_mbufmgr/Test10CopyL.h
changeset 72 ae47d0499bee
parent 68 5da8188e392b
child 77 c9776eadbffd
equal deleted inserted replaced
68:5da8188e392b 72:ae47d0499bee
     1 // Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // Contains declaration of test step 10
       
    15 // 
       
    16 //
       
    17 
       
    18 
       
    19 #if (!defined __TEST10COPYL_H__)
       
    20 #define __TEST10COPYL_H__
       
    21 
       
    22 
       
    23 NONSHARABLE_CLASS(CTest10Copy) : public CTestStepCTMbufmgr
       
    24 {
       
    25 public:
       
    26 	CTest10Copy();
       
    27 	~CTest10Copy();
       
    28 
       
    29 	virtual enum TVerdict doTestStepL( void );
       
    30 private:
       
    31 	struct RMBufInfo {
       
    32 		TInt aOffset;
       
    33 		TInt aLength;
       
    34 	};
       
    35 	struct CScriptInput {   // This str will be obtained 
       
    36 		RMBufInfo aBuf[50]; // from the script file
       
    37 		TInt aBufs;
       
    38 		TInt aChainLen;
       
    39 		TInt aCopyOffset;
       
    40 		TInt aCopyLen;
       
    41 	};
       
    42 };
       
    43 
       
    44 #endif //(__TEST10COPYL_H__)