equal
deleted
inserted
replaced
|
1 // Copyright (c) 2003-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". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // Class declaration for the class that logs using RDebug::Print |
|
15 // |
|
16 // |
|
17 |
|
18 #if !defined(__DEBLOGRD_H__) |
|
19 #define __DEBLOGRD_H__ |
|
20 |
|
21 #if !defined(__E32STD_H__) |
|
22 #include <e32std.h> |
|
23 #endif |
|
24 #if !defined(__DEBUGLOG_H__) |
|
25 #include "DEBUGLOG.H" |
|
26 #endif |
|
27 |
|
28 class CDebugLogPrint: public CDebugLogDevice |
|
29 { |
|
30 public: |
|
31 CDebugLogPrint(); |
|
32 ~CDebugLogPrint(); |
|
33 //Pure virtual functions from CDebugLogDevice |
|
34 virtual void ConstructL(TBool aIsFirst, TDesC &aParams); |
|
35 virtual void WriteToLogL(const TDesC &aDes, const TDesC &aDes2); |
|
36 virtual void WriteToLog8L(const TDesC8 &aDes, const TDesC8 &aDes2); |
|
37 }; |
|
38 |
|
39 #endif |
|
40 |