mpengine/inc/mpaudioeffectsframeworkwrapper.h
author hgs
Fri, 14 May 2010 18:54:37 -0500
changeset 35 fdb31ab341af
child 36 a0afa279b8fe
permissions -rw-r--r--
201019

/*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description: Framework wraper for Audio Effects
*
*/

#ifndef MPAUDIOEFFECTSFRAMEWORKWRAPPER_H
#define MPAUDIOEFFECTSFRAMEWORKWRAPPER_H

#include <QObject>

class MpAudioEffectsFrameworkWrapperPrivate;

class MpAudioEffectsFrameworkWrapper : public QObject
{
    Q_OBJECT
    friend class MpAudioEffectsFrameworkWrapperPrivate;

public:
    
    explicit MpAudioEffectsFrameworkWrapper();
    virtual ~MpAudioEffectsFrameworkWrapper();
    
    int balance();
    bool loudness();
    void setBalance( int balance );
    void setLoudness( bool mode );
    
private: // data
    
    MpAudioEffectsFrameworkWrapperPrivate *d_ptr; //owned
   
};

#endif /*MPAUDIOEFFECTSFRAMEWORKWRAPPER_H*/