equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2004 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: Object dumpper. |
|
15 * |
|
16 */ |
|
17 |
|
18 #ifndef PENGDEBUGDUMPOBJECT_H__ |
|
19 #define PENGDEBUGDUMPOBJECT_H__ |
|
20 |
|
21 #if defined (_DEBUG) |
|
22 |
|
23 // INCLUDES |
|
24 #include <E32Std.h> |
|
25 #include <MPEngPresenceAttrModel2.h> |
|
26 #include <MPEngTransactionStatus2.h> |
|
27 |
|
28 |
|
29 |
|
30 //FORWARD DECLARATION |
|
31 NONSHARABLE_CLASS( PEngDebugDumpObject ) |
|
32 { |
|
33 public: |
|
34 static void Dump( MPEngPresenceAttrModel2& aModel ); |
|
35 static void Dump( RPointerArray<MPEngPresenceAttrModel2>& aModels ); |
|
36 static void Dump( MPEngTransactionStatus2& aStatus ); |
|
37 |
|
38 private: //constructor / destructor |
|
39 PEngDebugDumpObject(); |
|
40 ~PEngDebugDumpObject(); |
|
41 }; |
|
42 |
|
43 |
|
44 |
|
45 #include <PEngDebugDumpObject.inl> |
|
46 #endif // _DEBUG |
|
47 |
|
48 #endif // PENGDEBUGDUMPOBJECT_H__ |
|
49 |
|
50 |
|
51 // End of File |
|
52 |