First public contribution.
1 // Copyright (c) 2007-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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
24 #ifndef __T_PERF_DATA_H__
25 #define __T_PERF_DATA_H__
27 class CTPerfData : public CBase
30 IMPORT_C static CTPerfData* NewL();
33 * Start performance counter. Use this to mark the
34 * point at which measurement is to start e.g. beginning
37 IMPORT_C void StartCounter();
40 * Stop performance counter. Call this to mark the point
41 * at which measurement is to finish e.g. end of draw
44 IMPORT_C void StopCounterL();
47 * Write performance results to designated file
49 * @param aFileName Name of file to write to
50 * @leave System wide error code.
52 IMPORT_C void WriteResultsL(const TDesC& aFileName);
59 void AnalyseResultsL();
67 RArray<TUint32> iResults;
75 #endif //__T_PERF_DATA_H__