emailservices/emailframework/commonlib/inc/CFSMailPluginData.h
changeset 0 8466d47a6819
child 8 e1b6206813b4
equal deleted inserted replaced
-1:000000000000 0:8466d47a6819
       
     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:  plugin data container
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef CFSMAILPLUGINDATA_H
       
    20 #define CFSMAILPLUGINDATA_H
       
    21 
       
    22 //  INCLUDES
       
    23 //<cmail>
       
    24 #include "CFSMailPlugin.h"
       
    25 //</cmail>
       
    26 
       
    27 /**
       
    28  *  plugin data container, contains plugin instance pointer
       
    29  *  and corresponding plugin id
       
    30  *
       
    31  *  @lib FSFWCommonLib
       
    32  *  @since S60 v3.1
       
    33  */
       
    34 class CFSMailPluginData : public CBase
       
    35     {
       
    36 
       
    37 public:
       
    38 
       
    39     /**
       
    40      * constructor.
       
    41      */
       
    42      CFSMailPluginData();
       
    43 	
       
    44     /**
       
    45      * destructor.
       
    46      */  
       
    47      ~CFSMailPluginData();
       
    48 	
       
    49   	/**
       
    50      * plugin uid
       
    51      */
       
    52      TUid              iPluginId;
       
    53 
       
    54   	/**
       
    55      * plugin instance pointer
       
    56      */
       
    57      CFSMailPlugin*    iPlugin;
       
    58 
       
    59     };
       
    60     
       
    61 #endif  
       
    62 
       
    63 // End of File