multimediacommsengine/tsrc/MCETestUI/MCETestUIEngine/inc/TMCETestUIEngineCmdDeleteEvent.h
changeset 0 1bce908db942
equal deleted inserted replaced
-1:000000000000 0:1bce908db942
       
     1 /*
       
     2 * Copyright (c) 2005 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:    See class definition below.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef __TMCETESTUIENGINECMDDELETEEVENT_H__
       
    21 #define __TMCETESTUIENGINECMDDELETEEVENT_H__
       
    22 
       
    23 // INCLUDES
       
    24 #include "TMCETestUIEngineCmdBase.h"
       
    25 
       
    26 // FORWARD DECLARATIONS
       
    27 class CMCETestUIEngineEvent;
       
    28 class CMCETestUIEngineRefer;
       
    29 
       
    30 // CLASS DEFINITION
       
    31 /**
       
    32  * 
       
    33  */
       
    34 class TMCETestUIEngineCmdDeleteEvent: public TMCETestUIEngineCmdBase
       
    35 	{
       
    36 
       
    37 	public:	// Constructors
       
    38 
       
    39 		/**
       
    40 		 * Constructor.
       
    41 		 *
       
    42 		 * @param aEngine UI Engine
       
    43 		 */
       
    44 		TMCETestUIEngineCmdDeleteEvent( 
       
    45 		            CMCETestUIEngine& aEngine,
       
    46 		            CMCETestUIEngineEvent& aEvent);
       
    47 
       
    48 	public: // Implementation for base class abstract methods
       
    49 
       
    50 		/// Executes a sequence of operations.
       
    51 		IMPORT_C void ExecuteL();
       
    52 		
       
    53 		/// Returns short textual representation for behavior of command
       
    54 		IMPORT_C const TDesC& Caption() const;
       
    55 
       
    56     private: // Data
       
    57         
       
    58         CMCETestUIEngineEvent& iEvent;
       
    59 
       
    60 	};
       
    61 // CLASS DEFINITION
       
    62 /**
       
    63  * 
       
    64  */
       
    65 class TMCETestUIEngineCmdDeleteRefer: public TMCETestUIEngineCmdBase
       
    66 	{
       
    67 
       
    68 	public:	// Constructors
       
    69 
       
    70 		/**
       
    71 		 * Constructor.
       
    72 		 *
       
    73 		 * @param aEngine UI Engine
       
    74 		 */
       
    75 		TMCETestUIEngineCmdDeleteRefer( 
       
    76 		            CMCETestUIEngine& aEngine,
       
    77 		            CMCETestUIEngineRefer& aRefer);
       
    78 
       
    79 	public: // Implementation for base class abstract methods
       
    80 
       
    81 		/// Executes a sequence of operations.
       
    82 		IMPORT_C void ExecuteL();
       
    83 		
       
    84 		/// Returns short textual representation for behavior of command
       
    85 		IMPORT_C const TDesC& Caption() const;
       
    86 
       
    87     private: // Data
       
    88         
       
    89         CMCETestUIEngineRefer& iRefer;
       
    90 
       
    91 	};
       
    92 
       
    93 #endif // __TMCETESTUIENGINECMDDELETESESSION_H__