equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2006-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: Logging utility for MUL |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef T_MULLOGGER_H |
|
20 #define T_MULLOGGER_H |
|
21 |
|
22 // CLASS HEADER |
|
23 #include "mullogger.h" |
|
24 |
|
25 // EXTERNAL INCLUDES |
|
26 #include <e32std.h> |
|
27 |
|
28 namespace MulLogger |
|
29 { |
|
30 /** |
|
31 * Logging utility, writes the given log to a shared chunk if the chunk |
|
32 * exists or to RDebug if not. |
|
33 * Note! due to performance reasons only 8 bit descriptor allowed |
|
34 * @param The descriptor containing the format string. |
|
35 * @param The arguments to append to the format string (ellipsis notation) |
|
36 */ |
|
37 IMPORT_C void WriteFormat( TRefByValue<const TDesC8> aFmt, ... ); |
|
38 } |
|
39 |
|
40 #endif // T_MULLOGGER_H |