epoc32/include/stereowideningdata.h
branchSymbian2
changeset 2 2fe1408b6811
parent 0 061f57f2323e
child 4 837f303aceeb
equal deleted inserted replaced
1:666f914201fb 2:2fe1408b6811
     1 stereowideningdata.h
     1 /*
       
     2 * Copyright (c) 2004 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 the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  This file contains definitions of audio effects data structures for
       
    15 *                stereo widening.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 
       
    21 #ifndef TEFSTEREOWIDENINGDATA_H
       
    22 #define TEFSTEREOWIDENINGDATA_H
       
    23 
       
    24 //  INCLUDES
       
    25 #include <e32std.h>
       
    26 #include <AudioEffectData.h>
       
    27 // CLASS DECLARATION
       
    28 
       
    29 /**
       
    30 *  This class defines the effect data structure to be passed between client and
       
    31 *  server.
       
    32 *
       
    33 *  @lib StereoWideningEffect.lib
       
    34 *  @since 3.0
       
    35 */
       
    36 class TEfStereoWidening : public TEfCommon
       
    37     {
       
    38     public:
       
    39 
       
    40         /**
       
    41         * Constructor.
       
    42         */
       
    43         TEfStereoWidening() {}
       
    44 
       
    45         /**
       
    46         * Constructor.
       
    47         */
       
    48         TEfStereoWidening( TUint8 aLevel, TBool aContinuousLevelSupported ) :
       
    49         	iLevel(aLevel), iContinuousLevelSupported(aContinuousLevelSupported) {}
       
    50 
       
    51     	// Data
       
    52         // Stereo widening level
       
    53 		TUint8 iLevel;
       
    54         TBool iContinuousLevelSupported;
       
    55     };
       
    56 
       
    57 typedef TPckgBuf<TEfStereoWidening> TEfStereoWideningDataPckg;
       
    58 
       
    59 #endif      // TEFSTEREOWIDENINGDATA_H
       
    60 
       
    61 // End of File