meetingrequest/mrbcplugin/inc/tmrbcplugincommand.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 TMRBCPLUGINCOMMAND_H
       
    18 #define TMRBCPLUGINCOMMAND_H
       
    19 
       
    20 #include <e32def.h>
       
    21 
       
    22 /**
       
    23  * Defines BC Plusgin command type
       
    24  */
       
    25 class TMRBCPluginCommand
       
    26     {
       
    27 public: // Construction    
       
    28     /**
       
    29      * Default constructor.
       
    30      */
       
    31     TMRBCPluginCommand();
       
    32     
       
    33     /**
       
    34      * C++ constructor.
       
    35      * @param aCommand Command type
       
    36      * @param aCheckEntryType Defines whether entry type needs to be checked 
       
    37      */
       
    38     TMRBCPluginCommand( 
       
    39             TInt aCommand, 
       
    40             TInt aCheckEntryType );
       
    41 
       
    42 public: // Interface    
       
    43     
       
    44     /**
       
    45      * Returns command
       
    46      * @return Command info
       
    47      */
       
    48     TInt Command() const;
       
    49     
       
    50     /**
       
    51      * Checks whether entry type needs to be checked
       
    52      * @return ETrue if entry type needs to be checked
       
    53      */
       
    54     TBool CheckEntryType() const;
       
    55   
       
    56     
       
    57 public:// Data
       
    58     TInt iCommand;
       
    59     TInt iCheckEntryType;
       
    60     };
       
    61 
       
    62 #endif // TMRBCPLUGINCOMMAND_H
       
    63 
       
    64 // EOF