mmsharing/livecommsui/lcui/tsrc/mustester/app/mustestdirector.h
branchRCL_3
changeset 33 bc78a40cd63c
parent 32 73a1feb507fb
child 35 6c57ef9392d2
equal deleted inserted replaced
32:73a1feb507fb 33:bc78a40cd63c
     1 /*
       
     2 * Copyright (c) 2003 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:  
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef CMUSTESTDIRECTOR_H
       
    20 #define CMUSTESTDIRECTOR_H
       
    21 
       
    22 //  INCLUDES
       
    23 #include <e32base.h>
       
    24 #include <e32property.h>
       
    25 #include <musmanagercommon.h>
       
    26 
       
    27 
       
    28 class CMusTestDirector :  public CBase
       
    29 	{
       
    30     public:
       
    31         CMusTestDirector();
       
    32         static CMusTestDirector* NewL();
       
    33         ~CMusTestDirector();
       
    34     public:
       
    35         void SetUseCase( MultimediaSharing::TMusUseCase aUseCase );
       
    36         void ConfigureLiveSharing() ;
       
    37         void ConfigureReceiveSharing();
       
    38     private:
       
    39         void DeleteProperty(TInt aKey);
       
    40         void DeleteProperties();
       
    41         void DefinePropertyL( TInt aKey,
       
    42                 RProperty::TType aType,
       
    43                 const TDesC& aVal );
       
    44         void DefinePropertyL(TInt aKey,RProperty::TType aType,TInt aVal);
       
    45         void DefinePropertiesL();
       
    46         void DeleteSessionProperties();
       
    47         void DefineSessionPropertyL(TInt aKey,RProperty::TType aType,TInt aVal);
       
    48         void DefineSessionPropertyL( TInt aKey,RProperty::TType aType,const TDesC& aVal );
       
    49         void ConstructL();
       
    50     };
       
    51 
       
    52 #endif // CMUSTESTDIRECTOR_H
       
    53