equal
deleted
inserted
replaced
|
1 /** |
|
2 * Copyright (c) 2003-2009 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 the License "Symbian Foundation License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * This contains CTestMessEditEntryUtil. A utility to edit an entry |
|
16 * |
|
17 * |
|
18 */ |
|
19 |
|
20 |
|
21 |
|
22 |
|
23 |
|
24 /** |
|
25 @file TestMessPrintEntryUtil.h |
|
26 */ |
|
27 |
|
28 #if (!defined __TEST_MESS_PRINT_ENTRY_UTIL_H__) |
|
29 #define __TEST_MESS_PRINT_ENTRY_UTIL_H__ |
|
30 |
|
31 #include "TestMessStoreProcessUtil.h" |
|
32 |
|
33 class CTestMessPrintEntryUtil : public CTestMessStoreProcessUtil |
|
34 { |
|
35 public: |
|
36 CTestMessPrintEntryUtil(CTestMessBase& aTestStep); |
|
37 |
|
38 protected: |
|
39 // Process the CImHeader information |
|
40 virtual void ProcessImHeaderL(CImHeader& aHeader); |
|
41 |
|
42 // Process the CImMimeHeader information |
|
43 virtual void ProcessImMimeHeaderL(CImMimeHeader& aHeader); |
|
44 |
|
45 // Process the CImIAPPreferences information |
|
46 virtual void ProcessInternetAccessPreferencesL(CImIAPPreferences& aPreferences); |
|
47 |
|
48 // Process the CSmsHeader information |
|
49 virtual void ProcessSmsHeaderStreamL(CSmsHeader& aHeader); |
|
50 |
|
51 |
|
52 // Process the CRichText information |
|
53 virtual void ProcessRichTextBodyL(CRichText& aBodyText); |
|
54 }; |
|
55 |
|
56 #endif /* __TEST_MESS_PRINT_ENTRY_UTIL_H__ */ |