meetingrequest/mrbcplugin/inc/mmrbcplugincommand.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 M_MRBCPLUGINCOMMAND_H
       
    18 #define M_MRBCPLUGINCOMMAND_H
       
    19 
       
    20 #include <e32base.h>
       
    21 #include <calencommandhandler.h>
       
    22 
       
    23 /**
       
    24  * MMRBCPluginCommand defines interface for BC plug-in commands
       
    25  */
       
    26 class MMRBCPluginCommand
       
    27 	{
       
    28 public: // Destruction
       
    29 	virtual ~MMRBCPluginCommand() { }
       
    30 	
       
    31 public: // Interface
       
    32 	/**
       
    33 	 * Executes the command.
       
    34 	 * @param aCommand Command to be executed
       
    35 	 */
       
    36 	virtual void ExecuteCommandL(
       
    37 			const TCalenCommand& aCommand ) = 0;	
       
    38 	};
       
    39 
       
    40 #endif // M_MRBCPLUGINCOMMAND_H
       
    41 
       
    42 // EOF