sysanadatacapture/piprofiler/piprofiler_api/inc/ProfilerGenericClassesCommon.h
changeset 1 3ff3fecb12fe
equal deleted inserted replaced
0:f0f2b8682603 1:3ff3fecb12fe
       
     1 /*
       
     2 * Copyright (c) 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 PROFILERGENERICCLASSESCOMMON_H
       
    20 #define PROFILERGENERICCLASSESCOMMON_H
       
    21 
       
    22 	#include <e32cmn.h>
       
    23 
       
    24 /*
       
    25  *	
       
    26  *	Class TProfilerSampleBufStruct definition
       
    27  *
       
    28  */
       
    29 
       
    30 
       
    31 class TProfilerSampleBufStruct
       
    32 {
       
    33 public:
       
    34 	TUint32 iSampleRemainder;
       
    35 	TUint8	iDataStart;
       
    36 };
       
    37 
       
    38 /*
       
    39  *  
       
    40  *  Class TBapBuf definition
       
    41  *
       
    42  */
       
    43 
       
    44 class TBapBuf
       
    45 {
       
    46 public:
       
    47 	TPtr8*		iDes;
       
    48 	TPtr8*		iBufDes;
       
    49 	TInt		iBufferSize;
       
    50 	TInt		iDataSize;
       
    51 	TUint8*		iBuffer;
       
    52 	TBapBuf*	iNext;
       
    53 };
       
    54 
       
    55 #endif