equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2007 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: Helper class. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef C_CCACLIENTUTILS_H |
|
20 #define C_CCACLIENTUTILS_H |
|
21 |
|
22 #include <e32base.h> |
|
23 #include <bamdesca.h> |
|
24 #include <barsc.h> |
|
25 #include <bautils.h> |
|
26 |
|
27 /** |
|
28 * Helper class. Contains functions for example performance measurements. |
|
29 * |
|
30 * @lib ccaapp.exe |
|
31 * @since S60 v5.0 |
|
32 */ |
|
33 class CCAClientUtils : public CBase |
|
34 { |
|
35 |
|
36 public: |
|
37 |
|
38 /** |
|
39 * Marks timestamp to performance logs. |
|
40 * @since S60 v5.0 |
|
41 */ |
|
42 IMPORT_C static void MarkPerformanceTimeStampL( ); |
|
43 |
|
44 /** |
|
45 * Marks string to performance logs. |
|
46 * |
|
47 * @since S60 v5.0 |
|
48 * @param aString Text to write to file. |
|
49 */ |
|
50 IMPORT_C static void MarkPerformanceLogStringL( TPtrC aString ); |
|
51 |
|
52 }; |
|
53 |
|
54 #endif // C_CCACLIENTUTILS_H |
|
55 |
|
56 // End of file |