|
1 /* |
|
2 * Copyright (c) 2002-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: Datafiller for meeting request reply |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 #ifndef CMRDATAFILLERREPLY_H |
|
22 #define CMRDATAFILLERREPLY_H |
|
23 |
|
24 // INCLUDES |
|
25 #include "CMRDataFillerBase.h" |
|
26 #include <e32base.h> |
|
27 #include <coemain.h> //CCoeEnv |
|
28 |
|
29 |
|
30 // FORWARD DECLARATIONS |
|
31 class CCalEntry; |
|
32 class CRichBio; |
|
33 |
|
34 // CLASS DECLARATION |
|
35 |
|
36 /** |
|
37 * ?one_line_short_description. |
|
38 * ?other_description_lines |
|
39 * |
|
40 * @lib ?library |
|
41 * @since Series ?XX ?SeriesXX_version |
|
42 */ |
|
43 class CMRDataFillerReply : public CMRDataFillerBase |
|
44 { |
|
45 |
|
46 public: // Constructors and destructor |
|
47 |
|
48 |
|
49 /** |
|
50 * Two-phased constructor. |
|
51 */ |
|
52 static CMRDataFillerReply* NewL( CRichBio& aRichBio, |
|
53 MMRModelInterface& aModel, |
|
54 CCoeEnv& aCoeEnv, |
|
55 CMRMailboxUtils& aUtils, |
|
56 MAgnEntryUi::TAgnEntryUiInParams& aParams); |
|
57 |
|
58 /** |
|
59 * Destructor. |
|
60 */ |
|
61 virtual ~CMRDataFillerReply(); |
|
62 |
|
63 public: //API |
|
64 |
|
65 void DoFillViewerL(); |
|
66 |
|
67 void FillStatusDataL(); |
|
68 |
|
69 void FillAttendanceDataL(); |
|
70 |
|
71 private: //construction |
|
72 |
|
73 /** |
|
74 * Constructor |
|
75 * @param aEntry Reference to the agenda entry. |
|
76 */ |
|
77 CMRDataFillerReply( CRichBio& iRichBio, |
|
78 MMRModelInterface& aModel, |
|
79 CCoeEnv& aCoeEnv, |
|
80 CMRMailboxUtils& aUtils, |
|
81 MAgnEntryUi::TAgnEntryUiInParams& aParams ); |
|
82 |
|
83 /** |
|
84 * By default Symbian 2nd phase constructor is private. |
|
85 */ |
|
86 void ConstructL(); |
|
87 }; |
|
88 |
|
89 #endif // CMRDATAFILLERREPLY_H |
|
90 |
|
91 // End of File |