mpviewplugins/mpsettingsviewplugin/tsrc/unittest_mpmpxasframeworkwrapper/stub/inc/mpxaudioeffectproperties.h
branchGCC_SURGE
changeset 44 eff9df3d9c98
parent 30 b95ddb5a0d10
parent 42 79c49924ae23
equal deleted inserted replaced
30:b95ddb5a0d10 44:eff9df3d9c98
     1 /*
       
     2 * Copyright (c) 2006 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:  audio effect properties stub for testing mpmpxasframeworkwrapper 
       
    15 *
       
    16 */
       
    17 
       
    18  
       
    19 #ifndef CMPXAUDIOEFFECTPROPERTIES_H
       
    20 #define CMPXAUDIOEFFECTPROPERTIES_H
       
    21 
       
    22 
       
    23 #include <e32base.h>
       
    24 #include <s32strm.h>
       
    25 
       
    26 
       
    27 class CMPXAudioEffectProperties : public CBase
       
    28     {
       
    29 public: 
       
    30     explicit CMPXAudioEffectProperties();   
       
    31     virtual ~CMPXAudioEffectProperties();
       
    32 
       
    33 public:
       
    34     
       
    35     // Stub functions
       
    36     TInt Balance();
       
    37     TBool Loudness();
       
    38     void SetBalance(TInt aBalance);
       
    39     void SetLoudness(TBool aLoudness);
       
    40     void Reset();
       
    41     void SaveToFileL();
       
    42     void LoadFromFileL();
       
    43 
       
    44 public:
       
    45     
       
    46     TInt    iBalance;
       
    47     TBool   iLoudness;
       
    48     TBool   iLoadFromFile;
       
    49     TBool   iSaveToFile;
       
    50     TBool   iLeave;
       
    51 };
       
    52 
       
    53 #endif // CMPXAUDIOEFFECTPROPERTIES_H