mpengine/inc/mpaudioeffectsframeworkwrapper_p.h
changeset 29 8192e5b5c935
equal deleted inserted replaced
25:3ec52facab4d 29:8192e5b5c935
       
     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: Framework wraper for Audio Effects - Private.
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef MPAUDIOEFFECTSFRAMEWORKWRAPPER_P_H
       
    19 #define MPAUDIOEFFECTSFRAMEWORKWRAPPER_P_H
       
    20 
       
    21 class CMPXAudioEffectProperties;
       
    22 
       
    23 class MpAudioEffectsFrameworkWrapperPrivate 
       
    24 {
       
    25 public:
       
    26     
       
    27     explicit MpAudioEffectsFrameworkWrapperPrivate(); 
       
    28     virtual ~MpAudioEffectsFrameworkWrapperPrivate();
       
    29     
       
    30 public:
       
    31     
       
    32     void init();
       
    33     void setBalance( int balance );
       
    34     void setLoudness( bool mode );
       
    35     int  balance();
       
    36     bool loudness();
       
    37             
       
    38 private:
       
    39     
       
    40     void doInitL();
       
    41     void saveToFile();
       
    42              
       
    43 private: // data
       
    44     
       
    45     CMPXAudioEffectProperties     *mAudioEffectProperties; // owned
       
    46     
       
    47 };
       
    48 
       
    49 #endif /*MPAUDIOEFFECTSFRAMEWORKWRAPPER_P_H*/