multimediacommsengine/tsrc/MCETestUI/MCETestUIEngine/inc/TMCETestUIEngineCmdRemoveStream.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 TMCETESTUIENGINECMDREMOVESTREAM_H
       
    21 #define TMCETESTUIENGINECMDREMOVESTREAM_H
       
    22 
       
    23 // INCLUDES
       
    24 #include "TMCETestUIEngineCmdBase.h"
       
    25 
       
    26 // FORWARD DECLARATIONS
       
    27 class CMceMediaStream;
       
    28 
       
    29 
       
    30 // CLASS DEFINITION
       
    31 class TMCETestUIEngineCmdRemoveStream: public TMCETestUIEngineCmdBase
       
    32 	{
       
    33 	public:	// Constructors
       
    34 
       
    35 		/**
       
    36 		 * Constructor
       
    37 		 */
       
    38 		TMCETestUIEngineCmdRemoveStream( 
       
    39             CMCETestUIEngine& aEngine,
       
    40             CMceMediaStream& aStream );
       
    41 
       
    42 	public: // Implementation for base class abstract methods
       
    43 
       
    44 		/// Executes a sequence of operations.
       
    45 		IMPORT_C void ExecuteL();
       
    46 		
       
    47 		/// Returns short textual representation for behavior of command
       
    48 		IMPORT_C const TDesC& Caption() const;
       
    49 
       
    50     private: // Data
       
    51     
       
    52         CMceMediaStream& iStream;
       
    53 	};
       
    54 
       
    55 #endif // TMCETESTUIENGINECMDREMOVESTREAM_H