emailservices/emailframework/commonlib/src/CFSMailPluginData.cpp
branchRCL_3
changeset 25 3533d4323edc
equal deleted inserted replaced
24:d189ee25cf9d 25:3533d4323edc
       
     1 /*
       
     2 * Copyright (c) 2007-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: This file implements class CFSMailPluginData.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include "emailtrace.h"
       
    20 #include "cfsmailplugindata.h"
       
    21 
       
    22 // -----------------------------------------------------------------------------
       
    23 // CFSMailPluginData::CFSMailPluginData
       
    24 // -----------------------------------------------------------------------------
       
    25 CFSMailPluginData::CFSMailPluginData()
       
    26 {
       
    27     FUNC_LOG;
       
    28 
       
    29 }
       
    30 
       
    31 // -----------------------------------------------------------------------------
       
    32 // CFSMailPluginData::~CFSMailPluginData
       
    33 // -----------------------------------------------------------------------------
       
    34 CFSMailPluginData::~CFSMailPluginData()
       
    35 {
       
    36     FUNC_LOG;
       
    37 	if(iPlugin)
       
    38 		{
       
    39 		delete iPlugin;
       
    40 		iPlugin = NULL;
       
    41 		CFSMailPlugin::Close();
       
    42 		}
       
    43 }
       
    44