mpviewplugins/mpsettingsviewplugin/tsrc/unittest_mpmpxasframeworkwrapper/stub/inc/mpxplaybackutility.h
branchGCC_SURGE
changeset 44 eff9df3d9c98
parent 30 b95ddb5a0d10
parent 42 79c49924ae23
equal deleted inserted replaced
30:b95ddb5a0d10 44:eff9df3d9c98
     1 /*
       
     2 * Copyright (c) 2009 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: mpxplaybackutility stub for testing mpmpxasframeworkwrapper
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef MMPXPLAYBACKUTILITY_H
       
    20 #define MMPXPLAYBACKUTILITY_H
       
    21 
       
    22 #include <mpxplaybackframeworkdefs.h>
       
    23 #include <mpxcommonframeworkdefs.h>
       
    24 #include <badesca.h>
       
    25 #include <mpxattribute.h>
       
    26 #include <mpxattributespecs.h>
       
    27 
       
    28 
       
    29 class MMPXPlaybackUtility
       
    30 {
       
    31 public:
       
    32 
       
    33     // Stub functions
       
    34     MMPXPlaybackUtility();
       
    35     ~MMPXPlaybackUtility();
       
    36     static MMPXPlaybackUtility* UtilityL(const TUid& aModeId = KPbModeDefault);
       
    37     void Close();
       
    38     void SetL(TMPXPlaybackProperty aProperty, TInt aValue);
       
    39     void CommandL(TMPXPlaybackCommand aCmd, TInt aData=0);
       
    40 
       
    41 public:
       
    42     TInt                    iBalance;
       
    43     TInt                    iEffectId;
       
    44     TMPXPlaybackProperty    iProperty;
       
    45     TMPXPlaybackCommand     iCommand;
       
    46 
       
    47 };
       
    48 
       
    49 #endif      // MMPXPLAYBACKUTILITY_H
       
    50