meetingrequest/mrprocessor/inc/cmrentryprocessor.h
branchRCL_3
changeset 12 4ce476e64c59
equal deleted inserted replaced
11:0396474f30f5 12:4ce476e64c59
       
     1 /*
       
     2 * Copyright (c) 2008 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: MBUtils ECOM definition
       
    15 *
       
    16 */
       
    17 #ifndef C_MRENTRYPROCESSOR_H
       
    18 #define C_MRENTRYPROCESSOR_H
       
    19 
       
    20 #include "mmrentryprocessor.h"
       
    21 #include "esmrdef.h"
       
    22 #include <e32base.h>
       
    23 
       
    24 class MESMRCalDbMgr;
       
    25 
       
    26 class CMREntryProcessor : 
       
    27         public CBase,
       
    28         public MESMREntryProcessor
       
    29     {
       
    30 public:
       
    31     static CMREntryProcessor* NewL(
       
    32             TESMRCalendarEventType aEventType,
       
    33             MESMRCalDbMgr& aCalDb );
       
    34     
       
    35     ~CMREntryProcessor();
       
    36     
       
    37 private:
       
    38     /** iDtor_ID_Key Instance identifier key. When instance of an
       
    39      *               implementation is created by ECOM framework, the
       
    40      *               framework will assign UID for it. The UID is used in
       
    41      *               destructor to notify framework that this instance is
       
    42      *               being destroyed and resources can be released.
       
    43      */
       
    44     TUid iDtor_ID_Key;    
       
    45     };
       
    46 
       
    47 #include "cmrentryprocessor.inl"
       
    48 
       
    49 #endif // C_MRENTRYPROCESSOR_H
       
    50 
       
    51 // EOF
       
    52