multimediacommsengine/tsrc/MCETestUI/MCETestUIEngine/inc/TMCETestUIEngineCmdSRReqRes.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 __TMCETESTUIENGINECMDSRREQRES_H__
       
    21 #define __TMCETESTUIENGINECMDSRREQRES_H__
       
    22 
       
    23 // INCLUDES
       
    24 #include "TMCETestUIEngineCmdBase.h"
       
    25 
       
    26 // FORWARD DECLARATIONS
       
    27 class CMCETestUIEngineSession;
       
    28 
       
    29 	
       
    30 
       
    31 // CLASS DEFINITION  
       
    32 /**
       
    33  * 
       
    34  */
       
    35 class TMCETestUIEngineCmdSendInfo: public TMCETestUIEngineCmdBase
       
    36 	{
       
    37 
       
    38 	public:	// Constructors
       
    39 
       
    40 		/**
       
    41 		 * Constructor.
       
    42 		 *
       
    43 		 * @param aEngine UI Engine
       
    44 		 */
       
    45 		TMCETestUIEngineCmdSendInfo( 
       
    46 		            CMCETestUIEngine& aEngine,
       
    47 		            CMCETestUIEngineSession& aSession );
       
    48 
       
    49 	public: // Implementation for base class abstract methods
       
    50 
       
    51 		/// Executes a sequence of operations.
       
    52 		IMPORT_C void ExecuteL();
       
    53 		
       
    54 		/// Returns short textual representation for behavior of command
       
    55 		IMPORT_C const TDesC& Caption() const;
       
    56 		
       
    57     private: // Data
       
    58         
       
    59         CMCETestUIEngineSession& iSession;
       
    60  
       
    61 
       
    62 	};		
       
    63 
       
    64 
       
    65 
       
    66 // CLASS DEFINITION  
       
    67 /**
       
    68  * 
       
    69  */
       
    70 class TMCETestUIEngineCmdDTMFInfo: public TMCETestUIEngineCmdBase
       
    71 	{
       
    72 
       
    73 	public:	// Constructors
       
    74 
       
    75 		/**
       
    76 		 * Constructor.
       
    77 		 *
       
    78 		 * @param aEngine UI Engine
       
    79 		 */
       
    80 		TMCETestUIEngineCmdDTMFInfo( 
       
    81 		            CMCETestUIEngine& aEngine,
       
    82 		            CMCETestUIEngineSession& aSession );
       
    83 
       
    84 	public: // Implementation for base class abstract methods
       
    85 
       
    86 		/// Executes a sequence of operations.
       
    87 		IMPORT_C void ExecuteL();
       
    88 		
       
    89 		/// Returns short textual representation for behavior of command
       
    90 		IMPORT_C const TDesC& Caption() const;
       
    91 
       
    92 
       
    93     private: // Data
       
    94         
       
    95         CMCETestUIEngineSession& iSession;
       
    96  
       
    97 
       
    98 	};		
       
    99 
       
   100 // CLASS DEFINITION  
       
   101 /**
       
   102  * 
       
   103  */
       
   104 class TMCETestUIEngineCmdSendInfoResponse: public TMCETestUIEngineCmdBase
       
   105 	{
       
   106 	public:	// Constructors
       
   107 
       
   108 		/**
       
   109 		 * Constructor.
       
   110 		 *
       
   111 		 * @param aEngine UI Engine
       
   112 		 */
       
   113 		TMCETestUIEngineCmdSendInfoResponse( 
       
   114 		            CMCETestUIEngine& aEngine,
       
   115 		            CMCETestUIEngineSession& aSession );
       
   116 
       
   117 	public: // Implementation for base class abstract methods
       
   118 
       
   119 		/// Executes a sequence of operations.
       
   120 		IMPORT_C void ExecuteL();
       
   121 		
       
   122 		/// Returns short textual representation for behavior of command
       
   123 		IMPORT_C const TDesC& Caption() const;
       
   124 		
       
   125 
       
   126     private: // Data
       
   127         
       
   128         CMCETestUIEngineSession& iSession;
       
   129 	};		
       
   130 	
       
   131 #endif // __TMCETESTUIENGINECMDSRREQRES_H__