meetingui/meetingrequestviewers/inc/CMRDataFillerCancel.h
changeset 0 f979ecb2b13e
equal deleted inserted replaced
-1:000000000000 0:f979ecb2b13e
       
     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 cancellation
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 #ifndef CMRDATAFILLERCANCEL_H
       
    22 #define CMRDATAFILLERCANCEL_H
       
    23 
       
    24 //  INCLUDES
       
    25 #include "CMRDataFillerBase.h"
       
    26 #include <e32base.h>
       
    27 #include <coemain.h> //CCoeEnv
       
    28 #include <MAgnEntryUi.h>
       
    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 CMRDataFillerCancel : public CMRDataFillerBase
       
    44     {
       
    45 
       
    46     public:  // Constructors and destructor
       
    47 
       
    48 
       
    49     	/**
       
    50 		* Two-phased constructor.
       
    51 	    */
       
    52 	    static CMRDataFillerCancel* NewL( CRichBio& aViewer,
       
    53                                           MMRModelInterface& aModel,
       
    54                                           CCoeEnv& aCoeEnv,
       
    55                                           CMRMailboxUtils& aUtils,
       
    56                                           MAgnEntryUi::TAgnEntryUiInParams& aParams );
       
    57 
       
    58 		/**
       
    59         * Destructor.
       
    60         */
       
    61         virtual ~CMRDataFillerCancel();
       
    62 
       
    63 	public: //API
       
    64 
       
    65 		void DoFillViewerL();
       
    66 		
       
    67 		void FillStatusDataL();
       
    68 
       
    69     private: //construction
       
    70 
       
    71         /**
       
    72          * Constructor
       
    73          * @param aEntry Reference to the agenda entry.
       
    74          */
       
    75         CMRDataFillerCancel( CRichBio& iRichBio,
       
    76                              MMRModelInterface& aModel,
       
    77                              CCoeEnv& aCoeEnv,
       
    78                              CMRMailboxUtils& aUtils,
       
    79                              MAgnEntryUi::TAgnEntryUiInParams& aParams );
       
    80 
       
    81         /**
       
    82         * By default Symbian 2nd phase constructor is private.
       
    83         */
       
    84         void ConstructL();
       
    85     };
       
    86 
       
    87 #endif      // CMRDATAFILLERCANCEL_H
       
    88 
       
    89 // End of File