meetingrequest/mrtasks/mrcaleventtaskplugin/inc/cmrcalentryuiedittask.h
branchRCL_3
changeset 12 4ce476e64c59
equal deleted inserted replaced
11:0396474f30f5 12:4ce476e64c59
       
     1 /*
       
     2 * Copyright (c) 2007-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 "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:  Interface definition for ESMR cal entry edit task
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef C_ESMRCALENTRYUIEDITTASK_H
       
    20 #define C_ESMRCALENTRYUIEDITTASK_H
       
    21 
       
    22 #include <e32base.h>
       
    23 
       
    24 #include "mesmrtask.h"
       
    25 
       
    26 // Forward declarations
       
    27 class MESMRCalEntry;
       
    28 
       
    29 /**
       
    30  * CESMRCalEntryUiEditTask is responsibe for creating entry edit task 
       
    31  *
       
    32  * @lib esmrtasks.lib
       
    33  */
       
    34 NONSHARABLE_CLASS( CESMRCalEntryUiEditTask ) : public CBase,
       
    35                                                public MESMRTask
       
    36     {
       
    37 public:
       
    38     /**
       
    39      * Creates and initializes new CESMRCalEntryUiEditTask object.
       
    40      * Ownership is transferred to caller.
       
    41      */
       
    42     static CESMRCalEntryUiEditTask* NewL( MESMRCalEntry& aEntry );
       
    43 
       
    44     /**
       
    45      * C++ destructor.
       
    46      */
       
    47     ~CESMRCalEntryUiEditTask();
       
    48 
       
    49 public:// From MESMRTask
       
    50     void ExecuteTaskL();
       
    51 
       
    52 private:
       
    53     CESMRCalEntryUiEditTask();
       
    54 
       
    55     void ConstructL();
       
    56     void EditCalEventL();
       
    57     };
       
    58 
       
    59 #endif // C_ESMRSTORECALEVENTTASK_H