emailcontacts/contactactionservice/inc/tfsccontactactionpluginparams.h
changeset 0 8466d47a6819
equal deleted inserted replaced
-1:000000000000 0:8466d47a6819
       
     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:  Declaration of construct parameters class for Action Menu
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef T_FSCCONTACTACTIONPLUGINPARAMS_H
       
    20 #define T_FSCCONTACTACTIONPLUGINPARAMS_H
       
    21 
       
    22 #include <e32base.h>
       
    23 
       
    24 // FORWARD DECLARATIONS
       
    25 class MFscActionUtils;
       
    26 
       
    27 /**
       
    28  *  Construction parameters for action plugins
       
    29  *
       
    30  *  @since S60 3.1
       
    31  */
       
    32 class TFscContactActionPluginParams
       
    33     {
       
    34 
       
    35 public: // Public methods
       
    36 
       
    37     /**
       
    38      * Constructor
       
    39      *
       
    40      * @param aUtils utils interface
       
    41      * @param aMode Menu mode
       
    42      */
       
    43     TFscContactActionPluginParams( 
       
    44         MFscActionUtils* aUtils ) 
       
    45         : iUtils( aUtils ) {}
       
    46    
       
    47 public: // Public members
       
    48 
       
    49     /**
       
    50      * Pointer to utils interface
       
    51      */
       
    52     MFscActionUtils* iUtils;
       
    53 
       
    54     };
       
    55 #endif // T_FSCCONTACTACTIONPLUGINPARAMS_H