equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2006 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: DEBUG utilities, for DEBUG version only |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 #ifndef SIMPLEPLUGINDEBUGUTILS_H |
|
22 #define SIMPLEPLUGINDEBUGUTILS_H |
|
23 |
|
24 #ifdef _DEBUG |
|
25 |
|
26 #include <e32std.h> |
|
27 #include <s32file.h> |
|
28 |
|
29 // FORWARD DECLARATION |
|
30 class RFs; |
|
31 class RFileReadStream; |
|
32 |
|
33 |
|
34 //********************************** |
|
35 // PluginLogger |
|
36 //********************************** |
|
37 NONSHARABLE_CLASS( PluginLogger ) |
|
38 { |
|
39 public: |
|
40 static void Log(TRefByValue<const TDesC> aFmt,...); |
|
41 }; |
|
42 |
|
43 #endif // _DEBUG |
|
44 |
|
45 #endif // simpledebugutils_H |
|
46 |
|
47 // End of File |