meetingrequest/mrtasks/src/cesmrtaskbase.cpp
branchRCL_3
changeset 12 4ce476e64c59
parent 11 0396474f30f5
child 13 8592a65ad3fb
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:  Implementation for ESMR base task
       
    15 *
       
    16 */
       
    17 
       
    18 #include "emailtrace.h"
       
    19 #include "cesmrtaskbase.h"
       
    20 
       
    21 #include <calentry.h>
       
    22 #include "mesmrmeetingrequestentry.h"
       
    23 #include "cesmrcaldbmgr.h"
       
    24 
       
    25 // ======== MEMBER FUNCTIONS ========
       
    26 
       
    27 // ---------------------------------------------------------------------------
       
    28 // CESMRTaskBase::CESMRTaskBase
       
    29 // ---------------------------------------------------------------------------
       
    30 //
       
    31 CESMRTaskBase::CESMRTaskBase(
       
    32         MESMRCalDbMgr& aCalDbMgr,
       
    33         MESMRMeetingRequestEntry& aEntry,
       
    34         CMRMailboxUtils& aMRMailboxUtils )
       
    35 :   iCalDbMgr(aCalDbMgr),
       
    36     iEntry(aEntry),
       
    37     iMRMailboxUtils( aMRMailboxUtils )
       
    38     {
       
    39     FUNC_LOG;
       
    40     //do nothing
       
    41     }
       
    42 
       
    43 // ---------------------------------------------------------------------------
       
    44 // CESMRTaskBase::~CESMRTaskBase
       
    45 // ---------------------------------------------------------------------------
       
    46 //
       
    47 CESMRTaskBase::~CESMRTaskBase()
       
    48     {
       
    49     FUNC_LOG;
       
    50     //do nothing
       
    51     }
       
    52 
       
    53 // ---------------------------------------------------------------------------
       
    54 // CESMRTaskBase::BaseConstructL
       
    55 // ---------------------------------------------------------------------------
       
    56 //
       
    57 void CESMRTaskBase::BaseConstructL()
       
    58     {
       
    59     FUNC_LOG;
       
    60     //do nothing
       
    61     }
       
    62